I am reading the paper about seam carving for resizing an image.

Down on page 3 where they define a seam mathematically, I need help clarifying it.

The paper says that a seam is an 8-connected path of pixels. How can it be 8-connected if the pixel cannot be on the same row? Shouldn't it be 3-connected?

http://www.seamcarving.com/arik/imret.pdf 20 mb PDF

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

8-connected path of pixels means that all the 8 neighbors o around a pixel x:

ooo
oxo
ooo (1)

count in determining if the pixel is connected. so the x in

xoo
oxo
oox (2)

are 8-connected. in contrast, 4-connected looks only at these 4 neighbors o:

 o
oxo
 o  (3)

under this scheme, the x in fig. 2 would not considered to be connected.

(there is no 3-connected in computer graphics (that i know of))

this being said, the definition of a vertical seam:

a vertical seam is an 8-connected path of pixels in the image from top to bottom, containing one, and only one, pixel in each row of the image

seems quite easy to grasp to me. this:

x
 x
  x

is a vertical seam (because there is only one pixel per row), also:

x
 x
 x

this is; this:

x
 xx
  x

is not (because there are two pixel in row two).

hope that helps.

link|improve this answer
Thank you for the good explanation. – Unknown Mar 16 '09 at 18:06
feedback

I wrote an explanation of the basics of the algorithm here: http://www.codng.com/2011/04/content-aware-image-resizing.html

It does not cover enlarging an image, I never got to implement that part.

link|improve this answer
feedback

It won't be 3 connected, it would be 6 connected but since there is nothing called 6 connected path, this is called 8-connected

(The '6' is referring to the 6 potential neighbours of a given pixel - 3 in the row above and 3 in the row below:)

xxx
 o
xxx
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.