资源简介
IQA是一个计算图像/视频质量的基于C语言的库。
里面包含了源代码。

代码片段和文件信息
/*
* Copyright (c) 2011 Tom Distler (http://tdistler.com)
* All rights reserved.
*
* The BSD License
*
* Redistribution and use in source and binary forms with or without
* modification are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice
* this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright notice
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* - Neither the name of the tdistler.com nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS“
* AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING BUT NOT LIMITED TO THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT INDIRECT INCIDENTAL SPECIAL EXEMPLARY OR
* CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE DATA OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY WHETHER IN
* CONTRACT STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include “convolve.h“
#include
float KBND_SYMMETRIC(const float *img int w int h int x int y float bnd_const)
{
if (x<0) x=-1-x;
else if (x>=w) x=(w-(x-w))-1;
if (y<0) y=-1-y;
else if (y>=h) y=(h-(y-h))-1;
return img[y*w + x];
}
float KBND_REPLICATE(const float *img int w int h int x int y float bnd_const)
{
if (x<0) x=0;
if (x>=w) x=w-1;
if (y<0) y=0;
if (y>=h) y=h-1;
return img[y*w + x];
}
float KBND_CONSTANT(const float *img int w int h int x int y float bnd_const)
{
if (x<0) x=0;
if (y<0) y=0;
if (x>=w || y>=h)
return bnd_const;
return img[y*w + x];
}
static float _calc_scale(const struct _kernel *k)
{
int iik_len;
double sum=0.0;
if (k->normalized)
return 1.0f;
else {
k_len = k->w * k->h;
for (ii=0; ii sum += k->kernel[ii];
if (sum != 0.0)
return (float)(1.0 / sum);
return 1.0f;
}
}
void _iqa_convolve(float *img int w int h const struct _kernel *k float *result int *rw int *rh)
{
int xykxkyuv;
int uc = k->w/2;
int vc = k->h/2;
int kw_even = (k->w&1)?0:1;
int kh_even = (k->h&1)?0:1;
int dst_w = w - k->w + 1;
int dst_h = h - k->h + 1;
i
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-07-06 11:48 iqa_1.1.2\build\
文件 998 2011-07-05 14:42 iqa_1.1.2\CHANGELOG.txt
目录 0 2011-07-06 11:48 iqa_1.1.2\doc\
文件 6080 2011-07-05 14:42 iqa_1.1.2\doc\algorithms.h
文件 2758 2011-07-05 14:42 iqa_1.1.2\doc\build.h
文件 478 2011-07-05 14:42 iqa_1.1.2\doc\footer.html
文件 3354 2011-07-05 14:42 iqa_1.1.2\doc\mainpage.h
文件 3298 2011-07-05 14:42 iqa_1.1.2\doc\sample_code.h
文件 74605 2011-07-05 14:42 iqa_1.1.2\Doxyfile
目录 0 2011-07-06 11:48 iqa_1.1.2\include\
文件 5238 2011-07-05 14:42 iqa_1.1.2\include\convolve.h
文件 2448 2011-07-05 14:42 iqa_1.1.2\include\decimate.h
文件 6175 2011-07-05 14:42 iqa_1.1.2\include\iqa.h
文件 2486 2011-07-05 14:42 iqa_1.1.2\include\iqa_os.h
文件 2409 2011-07-05 14:42 iqa_1.1.2\include\math_utils.h
文件 5966 2011-07-05 14:42 iqa_1.1.2\include\ssim.h
文件 2130 2011-07-05 14:42 iqa_1.1.2\iqa.sln
文件 7651 2011-07-05 14:42 iqa_1.1.2\iqa.vcproj
文件 607 2011-07-05 14:42 iqa_1.1.2\Makefile
文件 1231 2011-07-05 14:42 iqa_1.1.2\README.txt
目录 0 2011-07-06 11:48 iqa_1.1.2\resources\
文件 42236 2011-07-05 14:42 iqa_1.1.2\resources\iqa_logo.bmp
文件 4810 2011-07-05 14:42 iqa_1.1.2\resources\iqa_logo.jpg
文件 8980 2011-07-05 14:42 iqa_1.1.2\resources\mse_eq.jpg
文件 11380 2011-07-05 14:42 iqa_1.1.2\resources\psnr_eq.jpg
目录 0 2011-07-06 11:48 iqa_1.1.2\source\
文件 5813 2011-07-05 14:42 iqa_1.1.2\source\convolve.c
文件 2281 2011-07-05 14:42 iqa_1.1.2\source\decimate.c
文件 2686 2011-07-05 14:42 iqa_1.1.2\source\math_utils.c
文件 9540 2011-07-05 14:42 iqa_1.1.2\source\ms_ssim.c
文件 2135 2011-07-05 14:42 iqa_1.1.2\source\mse.c
............此处省略45个文件信息
- 上一篇:Socket文件传输
- 下一篇:MPEG2-TS格式分析工具 1.1 源代码
相关资源
- 国际象棋的qt源代码
- C语言开发实战宝典
- 小甲鱼C语言课件 源代码
- c语言看发的网络协议 ,源代码
- C语言实现的DES对称加密算法
- 数据结构,迷宫问题C语言版源代码
- C语言 学生信息管理系统 源代码
- C语言版3D魔方游戏源代码
- QT5开发及源代码
- USB CAN Tool 源代码(LabVIEW 2011环境)
- 超声波水表源代码
- 一个模糊PID温度控制算法源代码
- 数据结构 图的遍历源代码
- 数据结构实验源代码集
- TCP/IP客户端和服务器端源代码,好用
- 交互式计算机图形学 第六版 OpenGL源代
- 数据结构教程李春葆第五版书中例题
- 三次样条插值类源代码!
- diy写字机grbl v1.1源代码
- C语言常用算法源代码
- 关于LED制作的源代码合集(38套)
-
STM32-ba
se64加密源代码 - 51超声波避障源代码
- 一个C++实现的源代码行数统计工具
- ZZULIOJ部分答案C语言免费.7z
- 吉他调音软件源代码
- 连连看源代码C语言版
- AVR单片机SPI通讯程序 (C语言源代码)
- Visual+C++数字图像处理-谢凤英-源代码
- 大富翁源代码
评论
共有 条评论