- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 opencv 在 Qt creator 上进行开发。
我必须开发一个程序来对图像进行直方图均衡。我的图像是 16 位灰度图像,所以我不能使用 opencv 函数“equalizeHist”,因为它只适用于 8 位灰度图像。
我为此编写的代码如下:
void equalizeHist_16U(Mat* img)
{
long hist[65535] = {0};
double ratio;
int i, j;
assert(img->channels() == 1);
assert(img->type() == CV_16U);
ratio = 65535.0 / (img->cols*img->rows);
//Cumulative histogram calculation
compute_hist_16U(img, hist, true);
for(i=0 ; i<img->cols ; i++)
{
for(j=0 ; j<img->rows ; j++)
{
img->at<unsigned short>(j,i) = ratio*hist[img->at<unsigned short>(j,i)];
}
}
}
long compute_hist_16U (Mat* img, long* hist, bool cumul)
{
unsigned short i, j, k;
long* b;
long max = 0;
//is the image 16bits grayscale ?
assert(img->channels() == 1);
assert(CV_16U == img->type());
//histogram calculation
for(i=0 ; i<img->cols ; i++)
{
for(j=0 ; j<img->rows ; j++)
{
hist[img->at<unsigned short>(j,i)]++;
if(hist[img->at<unsigned short>(j,i)] > max)
max = hist[img->at<unsigned short>(j,i)];
}
}
//Cumulative histogram calculation (if cumul=true)
if(cumul)
{
for(b=hist ; b<hist+65535 ; b++)
{
*(b+1) += *b;
}
}
return (cumul ? hist[65535] : max);
}
它达到了我的预期,现在我想对我的图像进行直方图均衡化,但只对图像的指定部分进行均衡化。我将 x1,x2,y1,y2 参数添加到我的函数中,并像这样更改了“for”的范围(我更改的代码行带有箭头):
---->void equalizeHist_16U(Mat* img, int x1, int x2, int y1, int y2)
{
long hist[65535] = {0};
double ratio;
int i, j;
assert(img->channels() == 1);
assert(img->type() == CV_16U);
ratio = 65535.0 / (img->cols*img->rows);
//Cumulative histogram calculation
compute_hist_16U(img, hist, true);
---->for(i=x1 ; i<=x2 ; i++)
{
---->for(j=y1 ; j<=y2 ; j++)
{
img->at<unsigned short>(j,i) = ratio*hist[img->at<unsigned short>(j,i)];
}
}
}
---->long compute_hist_16U (Mat* img, long* hist, bool cumul, int x1, int x2, int y1, int y2)
{
unsigned short i, j, k;
long* b;
long max = 0;
//is the image 16bits grayscale ?
assert(img->channels() == 1);
assert(CV_16U == img->type());
//histogram calculation
---->for(i=x1 ; i<=x2 ; i++)
{
---->for(j=y1 ; j<=y2 ; j++)
{
hist[img->at<unsigned short>(j,i)]++;
if(hist[img->at<unsigned short>(j,i)] > max)
max = hist[img->at<unsigned short>(j,i)];
}
}
//Cumulative histogram calculation (if cumul=true)
if(cumul)
{
for(b=hist ; b<hist+65535 ; b++)
{
*(b+1) += *b;
}
}
return (cumul ? hist[65535] : max);
}
但它没有按预期工作,我的图像没有均衡,我的图像上没有极端值(清晰的白色和深黑色)。如果我尝试
equalizeHist_16U(&img, 0, 50, 0, 50)
我得到的图像非常非常明亮如果我尝试
equalizeHist(&img, 300, 319, 220, 239)
我得到的图像非常暗
我想我在循环边界上犯了一个错误,但我找不到哪里!也许你有想法?
提前致谢
最佳答案
初步:
您是否注意到您根本没有使用第二个版本的累积直方图函数?
void equalizeHist_16U(Mat* img, int x1, int x2, int y1, int y2)
正在打电话
compute_hist_16U(img, hist, true);
而不是:
long compute_hist_16U (Mat* img, long* hist, bool cumul, int x1, int x2, int y1, int y2)
(我想你想发布最后一个,否则我不明白你为什么发布代码:))
实际答案:
如果您使用 cv::Mat
rois,通过 operator ()
,一切都会变得容易得多.
你的函数将变成如下:
void equalizeHist_16U(Mat* img, int x1, int x2, int y1, int y2) {
//Here you should check you have x2 > x1 and y2 > y1 and y1,x1 >0 and x2 <= img->width and y2 <= img->height
cv::Rect roi(x1,y1,x2-x1,y2-y1);
//To reproduce exactly the behaviour you seem to target,
//it should be x2-x2+1 and y2-y1+1.
//But you should get used on the fact that extremes are,
//as a convention, excluded
cv::Mat& temp = *img; //Otherwise using operator() is complicated
cv::Mat roiMat = temp(roi); //This doesn't do any memory copy, just creates a new header!
void equalizeHist_16U(&roiMat); //Your original function!!
}
就是这样!如果这不起作用,则意味着您处理整个图像的原始函数存在您之前没有注意到的错误。
当我有一点时间时,我会发布一些建议来使你的函数更快(例如,你应该避免使用 .at
,你应该计算你的最大值histogram 在直方图计算结束时,您应该创建一个 short
查找表,您可以在其中将直方图乘以比率,以便应用直方图变得更快;而不是 ratio
导致浮点转换的变量,您可以简单地将直方图元素除以常量 (img->width*img->height)
) 并且更整洁(您应该传递 Mat
通过引用,不使用指针,那是 C 风格,而不是 C++)
此外:
compute_hist_16U
返回一个值?long hist[65535]
应该是 long hist[65536]
,这样索引 65535
才有效。首先,65535
是图像中的白色值。此外,当你有 b+1
和 b=hist+65534
(最后一个周期)
for(b=hist ; b<hist+65535 ; b++)
{
*(b+1) += *b;
}
关于c++ - 选择性直方图均衡化(仅在图像的指定区域),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30107073/
根据这个: Selectivity is the value between 0 and 1, and it is the fraction of rows returned after applyi
我想知道C是否允许设置选择性#define。这就是我所说的选择性:如果我定义了一个结构: typedef struct mystruct{ int (*pointer_function)(struc
我正在尝试替换 pi与 math.pi使用以下 Python 函数。 def cleanup(x): return x.replace("pi", "math.pi") 我有以下字符串: a =
有没有一种方法可以只对类型声明可用的代码执行流程检查? 有一种方法可以启用每个文件的检查( header 中的 //@flow),但是一旦设置,代码的所有部分都需要类型声明(否则会记录错误,如“108
我在 openGL (openGl 1.1 win32) 中绘制了一个场景。 我使用 glClipPlane 隐藏前景对象以允许用户查看/编辑距离部分。选择是在 native 完成的,无需使用 ope
我正在开发允许第三方上传 HTML 片段的服务。在其中一些片段中,可能有指向 CSS 文件或内联 CSS 的链接。该服务有自己的 CSS 文件。 除了 iFrame 之外,还有什么方法可以让我指示特定
假设我有下面列出的用于通过 Web 服务将数据传递给客户端的类(类已简化): public class Customer { public int CustomerId { get; set;
我肯定有一个相当普遍的文档需求...... 我正在实现一个相当大的 Java 库代码库,除其他外,它包含各种类,这些类旨在在适当的抽象级别上公开给调用者/实现者。同时,代码库当然包含库的用户在使用 A
我有我的小 program.jar,它使用了巨大的 library.jar 的一小部分。 是否有一种工具可以将几个 jar 重新打包成一个,以便它可以独立运行并且尽可能小? 更新:大小很重要。 最佳答
如何为站点的某些部分强制使用 HTTPS,例如登录页面或注册页面,并为站点的其余部分使用 HTTP? 最佳答案 我最喜欢的强制转换为 https 的方法是将其作为您的 php 脚本中的第一件事。它适用
我一直在慢慢学习 Ruby(在这一点上,这可能是我投入大量时间实际学习的第一门语言)所以这对你们中的许多人来说可能是一个非常简单的问题。 我的学习玩具项目基本上是一个 roguelike。目前,我有一
我正在使用Liip Cache Control bundle处理项目中的缓存。通过使用此捆绑包,您可以像这样配置缓存: liip_cache_control: rules: -
在上个月的某个时候,一个随机网站决定在一个框架中为我公司的网站提供服务。忽略“他们在做什么?”的问题。一分钟,我使用了一些简单的 frame-buster Javascript: if (top.l
假设我有以下 Numpy 数组: array([[3, 5, 0], [7, 0, 2]]) 我现在想在值不为 0 的地方加 2。最快的方法是什么?我必须操纵相当大的多维数组? 最佳答案 在我看来:
我是 git 的新手,我正尝试在 Github 项目上进行协作。我 fork 了一个项目,添加了功能,并根据自己的需要移植到了 Android。添加的功能需要在基础项目中,而不是 android 相关
在以下两个命令中,第二个抛出异常说“未知编解码器 libfdk_aac”。谁能指出我,可能是什么问题? $> ffmpeg -loglevel verbose -re -i /var/mp4s/tes
我正在尝试 nvidia 的展开循环指令,但还没有找到有选择地打开它的方法。 假设我有这个... void testUnroll() { #pragma optionNV(unroll all
我们公司最近开始使用git-flow,我们遇到了以下问题: 我们有一个控制应用程序日志级别的 DEV_MODE bool 值,我们希望开发分支始终具有 DEV_MODE=true。 但是,在发布版本时
我试图在我的 DataFrame df 中删除 nan 值,但是我很难在不影响整行的情况下删除每一列。下面是我的 df 示例。 Advertising No Advertising nan
我已将播放服务更新到最新版本,目前为 9.2.0,我还想为谷歌播放服务使用选择性模块。 // compile 'com.google.android.gms:play-services:9.2.
我是一名优秀的程序员,十分优秀!