我正在使用 OpenCV 调整 JPG 的大小。代码就像
im = cv2.imread(infile)
resized_im = cv2.resize(im, None, None, 0.5, 0.5, cv2.INTER_LINEAR)
cv2.imwrite(outfile, resized_im)
在查看调整大小的图像时,我可以看到色度已被下采样。
$ identify -verbose input.jpg | grep samp
jpeg:sampling-factor: 1x1,1x1,1x1
$ identify -verbose resized.jpg | grep samp
jpeg:sampling-factor: 2x2,1x1,1x1
有什么办法可以改变这种情况吗?
谢谢!
最佳答案
我在 Android 上工作并尝试在 Android CV 中重现您的用例......我所做的是以下......
Mat tempMat=new Mat();
Utils.bitmapToMat(bm, tempMat);
Mat tempMat1 = new Mat(tempMat.rows()/2, tempMat.cols()/2, tempMat.type());
Imgproc.resize(tempMat, tempMat1, new Size(), 0.5, 0.5, Imgproc.INTER_LINEAR);
Utils.matToBitmap(tempMat, bm);
bm = Bitmap.createBitmap(tempMat1.width(), tempMat1.height(), Bitmap.Config.ARGB_8888);
Utils.matToBitmap(tempMat1, bm);
然后我有一些代码可以将两个位图保存到文件中......我在将它们从我的 Android 设备下载到 Ubuntu 桌面后检查了保存的文件......
atul@ubuntu:~/Development/sdk/platform-tools$ ls -l IMG_?.jpg
-rw-r--r-- 1 atul atul 209336 Feb 13 09:58 IMG_1.jpg
-rw-r--r-- 1 atul atul 63237 Feb 13 09:58 IMG_2.jpg
atul@ubuntu:~/Development/sdk/platform-tools$ identify -verbose IMG_1.jpg | grep samp
jpeg:sampling-factor: 2x2,1x1,1x1
atul@ubuntu:~/Development/sdk/platform-tools$ identify -verbose IMG_2.jpg | grep samp
jpeg:sampling-factor: 2x2,1x1,1x1
您的代码和我的代码的唯一区别是我使用了 new Size() 并创建了大小为一半的 Destination Mat 对象。你能在你的代码中尝试以上两件事,看看它是否有效......
仅通过查看您得到的输出,我认为它不是色度,而是 Lumina 正在增加......在 YCrCb 色彩空间中,第一个元素是 Lumina,第二个是色度红色,第三个是色度蓝色......
OpenCV 文档中有一篇很好的文章可以使用 Y Cr 和 Cb。以下是链接...
http://docs.opencv.org/doc/tutorials/core/interoperability_with_OpenCV_1/interoperability_with_OpenCV_1.html
我不认为 Android CV 或 C++ CV 或 Python CV 应该有任何区别,因为这三个都使用相同的底层原生 CV 代码......
希望这可以帮助...
关于python - opencv imwrite中的色度子采样,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21714637/