Content-aware image resizing in JavaScript
41–50 of 68 posts
Re: Content-aware image resizing in JavaScript
#42You can also apply this to each frame in a video for a rather interesting effect. My brother has a YouTube channel full of content-aware scaling videos: https://youtu.be/a8k3b-QNbhs
Re: Content-aware image resizing in JavaScript
#43You can also apply this to each frame in a video for a rather interesting effect. My brother has a YouTube channel full of content-aware scaling videos: https://youtu.be/a8k3b-QNbhs
Re: Content-aware image resizing in JavaScript
#44You can also apply this to each frame in a video for a rather interesting effect. My brother has a YouTube channel full of content-aware scaling videos: https://youtu.be/a8k3b-QNbhs
Wow, that's incredibly interesting! My first reaction is how actor's faces look surprisingly like traditional caricatures that illustrators do -- e.g. shrinking foreheads and chins which are detail-light but keeping eyes and ears which are detail-heavy. But my second thought is that the extreme jumpiness in frames occurs because each frame is processed separately. But if you considered each seam not to be a "jagged l…
Actually the authors of the seam carving paper went on to do just that [0]. From the abstract: "We present video retargeting using an improved seam carving operator. Instead of removing 1D seams from 2D images we remove 2D seam manifolds from 3D space-time volumes. To achieve this we replace the dynamic programming method of seam carving with graph cuts that are suitable for 3D volumes."
Re: Content-aware image resizing in JavaScript
#45You can also apply this to each frame in a video for a rather interesting effect. My brother has a YouTube channel full of content-aware scaling videos: https://youtu.be/a8k3b-QNbhs
Re: Content-aware image resizing in JavaScript
#46Brilliant implementation anyway. Having a lot of fun!
Re: Content-aware image resizing in JavaScript
#47Totally unrelated to this great project, but I'm curious: do people really use content-aware resizing feature in practice? I use Photoshop frequently, and I use content-aware removal A LOT (super handy). But it never occured to me, not even once, that I need to use the content-aware resizing despite it's there for years. If I really need to change the ratio of an image/photo I usually just crop.
Re: Content-aware image resizing in JavaScript
#48You can also apply this to each frame in a video for a rather interesting effect. My brother has a YouTube channel full of content-aware scaling videos: https://youtu.be/a8k3b-QNbhs
Re: Content-aware image resizing in JavaScript
#49You can also apply this to each frame in a video for a rather interesting effect. My brother has a YouTube channel full of content-aware scaling videos: https://youtu.be/a8k3b-QNbhs
Really cool. Do you know what he’s using to do the scaling?
Re: Content-aware image resizing in JavaScript
#50You can also apply this to each frame in a video for a rather interesting effect. My brother has a YouTube channel full of content-aware scaling videos: https://youtu.be/a8k3b-QNbhs
Wow, that's incredibly interesting! My first reaction is how actor's faces look surprisingly like traditional caricatures that illustrators do -- e.g. shrinking foreheads and chins which are detail-light but keeping eyes and ears which are detail-heavy. But my second thought is that the extreme jumpiness in frames occurs because each frame is processed separately. But if you considered each seam not to be a "jagged l…
easier solution would probably be frame interpolation between the two seperate frames.