Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
考虑到像素的一些相邻窗口,我必须在每个像素处创建局部直方图。
numpy.histogram(image,bins=256)
创建整个图像的直方图。我可以给它图像的特定部分,但我不想使用循环。
此代码应该为您提供矩形中图像部分的直方图,其左上角为(x1, y1),右下角为(x2, y2):
(x1, y1)
(x2, y2)
numpy.histogram(image[x1:x2, y1:y2], bins=256)
如果要对图像中的每个像素执行此操作,则必须使用循环。