Live data from Hacker News

A web comic discovery tool that solves the copyright infringement problem

justthefirstframe.com

1–10 of 12 posts

Re: A web comic discovery tool that solves the copyright infringement problem

#4
post #3
post #2

This is totally clever. I bet this is pretty automatable, too.

This should be pretty trivial with OpenCV etc.

Thanks joshu and swah! I'm actually the creator of the site and am doing this completely manually. I've explored here and there on how I might automate it, though it all looks a bit daunting. I hadn't heard of OpenCV, and I will definitely explore this further. Thank you so much!

Re: A web comic discovery tool that solves the copyright infringement problem

#5
post #4
post #3

Earlier quoted context omitted.

This should be pretty trivial with OpenCV etc.

Thanks joshu and swah! I'm actually the creator of the site and am doing this completely manually. I've explored here and there on how I might automate it, though it all looks a bit daunting. I hadn't heard of OpenCV, and I will definitely explore this further. Thank you so much!

OpenCV is just an API, might be a lot of work.

I think you want to do a Hough transform and then look for long vertical lines.

But I'm no expert.

Re: A web comic discovery tool that solves the copyright infringement problem

#7
post #6
post #3

Earlier quoted context omitted.

This should be pretty trivial with OpenCV etc.

Unfortunately, nothing in computer vision's ever as trivial as you might imagine, or as it should be.

True. But I bet you'd get 80% of the way there with canny + hough.

Re: A web comic discovery tool that solves the copyright infringement problem

#8
post #7
post #6

Earlier quoted context omitted.

Unfortunately, nothing in computer vision's ever as trivial as you might imagine, or as it should be.

True. But I bet you'd get 80% of the way there with canny + hough.

I ended up spending most of the day on it and it's more like 20% with that combo.

Fortunately, I found a better way that does get me to 80% or so.

Re: A web comic discovery tool that solves the copyright infringement problem

#9
post #8
post #7

Earlier quoted context omitted.

True. But I bet you'd get 80% of the way there with canny + hough.

I ended up spending most of the day on it and it's more like 20% with that combo. Fortunately, I found a better way that does get me to 80% or so.

No kidding?

What's working?

Re: A web comic discovery tool that solves the copyright infringement problem

#10
post #9
post #8

Earlier quoted context omitted.

I ended up spending most of the day on it and it's more like 20% with that combo. Fortunately, I found a better way that does get me to 80% or so.

No kidding? What's working?

Full writeup coming soon! (I'll comment here with a link, in case it doesn't make front-page.)

Getting the lines is not the hard part, but rather, reasoning about the regions enclosed by them to find the panels. I'm not totally satisfied with my current solution (it's a bit hacky), so I'll try to tweak it a bit, but in any case, results will be posted soon.

Post reply on HN