Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

While doing image processing with UI images in Objective-C, i am having an unusual image-skewed problem for some images. The images are getting distorted badly. This problem occurs in Open-CV when i take width instead of width-step. I know that this problem is created for images whose width is not a multiple of 4 (improper row allignment), my question is how do i fix the issue in Objective-C ??

My sample code:-

   unsigned char *output_image1 = (unsigned char *)malloc(height2*width2*4);
   int i,j;

   for(i=0;i<height2;i++){
     for(j=0;j<4*width2;j=j+4){
         output_image[i*4*width2+4*(j/4)]   = 46;
         output_image[i*4*width2+4*(j/4)+1] = 100;
        output_image[i*4*width2+4*(j/4)+2] = 150;
         output_image[i*4*width2+4*(j/4)+3] = 255;
   }
  }
share|improve this question
this have nothing to do with ObjC and what are you trying to do? can't you append to image to enforce the alignment? – xlc Feb 9 at 11:16
I am trying to access pixels individually and modify them. Actually, alignment is not the real problem, the image is getting garbled, to be precise. – Soumyajit Feb 11 at 4:56
in what way you want to modify the image? – xlc Feb 11 at 5:55
Add a filter/rotate image etc. I am just resampling the image while loading it... this is where I face the problem. – Soumyajit Feb 11 at 7:43
there is output_image, but i did not see where is the input come from in your code – xlc Feb 11 at 9:11
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.