Ask Your Question

Prakash iOS's profile - activity

2017-10-13 23:57:32 -0600 received badge  Supporter (source)
2017-10-13 23:57:07 -0600 marked best answer iOS - How to find the difference area in the two images

I'm new to the OpenCV. I want to find the difference area in the two images.

C:\fakepath\image1.png

C:\fakepath\image2.png

In the attached images, i need to find the different area i.e, the small circle coordinates.

Please guide me to do it.

Thanks.

2017-10-13 23:57:07 -0600 received badge  Scholar (source)
2017-10-13 05:40:46 -0600 commented answer iOS - How to find the difference area in the two images

Thanks! Also i need to know the rect coordinates of the circle.

2017-10-13 01:35:21 -0600 asked a question iOS - How to find the difference area in the two images

iOS - How to find the difference area in the two images I'm new to the OpenCV. I want to find the difference area in the

2017-09-21 06:00:35 -0600 received badge  Enthusiast
2017-09-20 00:06:31 -0600 received badge  Editor (source)
2017-09-20 00:06:31 -0600 edited question Is there any option to find the which part of the images are different from other?

Is there any option to find the which part of the images are different from other? I'm new to OpenCV, I want to develop

2017-09-20 00:06:04 -0600 asked a question Is there any option to find the which part of the images are different from other?

Is there any option to find the which part of the images are different from other? I'm new to OpenCV, I want to develop

2017-09-12 05:28:27 -0600 asked a question Is it possible to detect hologram on video feed using OpenCV?

Is it possible to detect hologram on video feed using OpenCV? I want to develop the apps(iOS and Android) to detect the

2017-09-12 05:23:07 -0600 received badge  Organizer (source)
2017-01-27 01:42:28 -0600 answered a question iOS CvVideoCamera shows up sideways

Quick fix Before initialize the CVVideoCamera add these lines

NSNumber *value = [NSNumber numberWithInt:UIInterfaceOrientationPortrait]; [[UIDevice currentDevice] setValue:value forKey:@"orientation"];

self.videoCamera = [[CvVideoCamera alloc] initWithParentView:self.previewImage]; self.videoCamera.delegate = self;