Convert jpg image in ppm P3 ASCII format using Opencv
-
Using opencv imwrite function I managed to convert jpg image in ppm P6 format. Mat image = imread(picPath); vector<int> compression_params; compression_params.push_back(CV_IMWRITE_PXM_BINARY); compression_params.push_back(1); imwrite("bez.ppm", image, compression_params); Problem is that I actually have to convert jpg image in ppm P3 ASCII format. Does anyone know how to do it? Thanks! EDIT: In the project I have the following piece of code where I check the maximum value of pixels: int maxVal; fscanf(in, "%d", &maxVal); if (maxVal != 255) { printf("Input file error: Not a Netpbm color image with 256 levels\n"); exit(0); } When I set parameter 0 then I get: Not a Netpbm color image with 256 levels! When I do the conversion from jpg to ppm p3 with irfanview program works.
-
Answer:
The code involved is in the file modules/imgcodecs/src/grfmt_pxm.cpp in the OpenCV source tree. It sets the internal flag isBinary like this according to the compression parameters: for( size_t i = 0; i < params.size(); i += 2 ) if( params[i] == CV_IMWRITE_PXM_BINARY ) isBinary = params[i+1] != 0; so, if you want ASCII (P3) you need to have compression_params.push_back(0) and have image type CV_8UC1, CV_8UC3 or CV_16UC1.
Denis Å tajduhar at Stack Overflow Visit the source
Related Q & A:
- How to Convert Json date string to more readable date format?Best solution by SharePoint
- How to convert a video to a specific format?Best solution by Super User
- How to convert UNICODE to ASCII?Best solution by Stack Overflow
- How to change date format using jquery?Best solution by Stack Overflow
- How can I convert PDF files into JPG?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.