Detecting multiple images in a single image

Daniel Euchar

I need help to identify the border and compare the images with the original image. I need guidance on How can I achieve this through processing or matlab or anything for beginner. for example look at the image below.

Original Image:

enter image description here

The Multiple Image: Larger Image

Amro

The "multiple image" you showed is easy enough to handle using just simple image processing, no need for template matching :)

% read the second image
img2 = imread('http://i.stack.imgur.com/zyHuj.jpg');
img2 = im2double(rgb2gray(img2));

% detect coca-cola logos
bw = im2bw(img2);                                       % Otsu's thresholding
bw = imfill(~bw, 'holes');                              % fill holes
stats = regionprops(bw, {'Centroid', 'BoundingBox'});   % connected components

% show centers and bounding boxes of each connected component
centers = vertcat(stats.Centroid);
imshow(img2), hold on
plot(centers(:,1), centers(:,2), 'LineStyle','none', ...
    'Marker','x', 'MarkerSize',20, 'Color','r', 'LineWidth',3)
for i=1:numel(stats)
    rectangle('Position',stats(i).BoundingBox, ...
        'EdgeColor','g', 'LineWidth',3)
end
hold off

enter image description here

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to merge multiple images and text into single image?

From Dev

Adding multiple images on single image (with data from database)

From Dev

python PIL acces multiple images from a single image file

From Dev

Convert html div having multiple images to single image using javascript

From Dev

Single gradient to multiple images

From Dev

How to add multiple images in single image view and to show all images for every 2 second continuously

From Dev

Detecting object(image) in image, created form overlapping images

From Dev

Prevent selecting multiple images and Select only single image in image upload function in codeigniter

From Dev

Image viewer for multiple images

From Dev

Lag for multiple images in single scrollview

From Dev

Add multiple images on a single page

From Dev

Lag for multiple images in single scrollview

From Dev

How do I specify a single global background image using multiple background images?

From Dev

getClipData() returning null when a single image is selected when working fine when multiple images are selected

From Dev

Array of images stacked next to each other, using LayerDrawable.(Displaying multiple image in single imageview)

From Dev

How do I specify a single global background image using multiple background images?

From Dev

In multiple files upload(PHP/Mysql), the images are stored in single column. Want to store each image in single row with same id

From Dev

Multiple images in a rails image tag

From Dev

Temporal median image of multiple images

From Dev

How to Swap Image for multiple images

From Dev

Click on image JavaScript detecting multiple clicks per actual click

From Dev

Create a single image from images array

From Dev

How to merge images in a single PDF or image file

From Dev

How to merge images in a single PDF or image file

From Dev

Having a single image view to show different images

From Dev

Show Image On Metaio Image Tracker For Multiple Images

From Dev

Multiple Image Gallery on a Single Page

From Dev

Single button, Multiple image in picturebox

From Dev

Detecting individual images in an array of images

Related Related

  1. 1

    How to merge multiple images and text into single image?

  2. 2

    Adding multiple images on single image (with data from database)

  3. 3

    python PIL acces multiple images from a single image file

  4. 4

    Convert html div having multiple images to single image using javascript

  5. 5

    Single gradient to multiple images

  6. 6

    How to add multiple images in single image view and to show all images for every 2 second continuously

  7. 7

    Detecting object(image) in image, created form overlapping images

  8. 8

    Prevent selecting multiple images and Select only single image in image upload function in codeigniter

  9. 9

    Image viewer for multiple images

  10. 10

    Lag for multiple images in single scrollview

  11. 11

    Add multiple images on a single page

  12. 12

    Lag for multiple images in single scrollview

  13. 13

    How do I specify a single global background image using multiple background images?

  14. 14

    getClipData() returning null when a single image is selected when working fine when multiple images are selected

  15. 15

    Array of images stacked next to each other, using LayerDrawable.(Displaying multiple image in single imageview)

  16. 16

    How do I specify a single global background image using multiple background images?

  17. 17

    In multiple files upload(PHP/Mysql), the images are stored in single column. Want to store each image in single row with same id

  18. 18

    Multiple images in a rails image tag

  19. 19

    Temporal median image of multiple images

  20. 20

    How to Swap Image for multiple images

  21. 21

    Click on image JavaScript detecting multiple clicks per actual click

  22. 22

    Create a single image from images array

  23. 23

    How to merge images in a single PDF or image file

  24. 24

    How to merge images in a single PDF or image file

  25. 25

    Having a single image view to show different images

  26. 26

    Show Image On Metaio Image Tracker For Multiple Images

  27. 27

    Multiple Image Gallery on a Single Page

  28. 28

    Single button, Multiple image in picturebox

  29. 29

    Detecting individual images in an array of images

HotTag

Archive