Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
Posts: 2,693
Threads: 47
Joined: 2015 Jan
Thanks: 1637
Given 954 thank(s) in 608 post(s)
Looks good. The source is the old HDTV?
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
Various sources used - HDTVs and BD. Colors are provisional.
Posts: 2,693
Threads: 47
Joined: 2015 Jan
Thanks: 1637
Given 954 thank(s) in 608 post(s)
Wow so you managed to add more? That's awesome if you can get several sources together to get the most.
I would say do a 720p if some sources are SD. That would be enough to make it seamless.
Posts: 129
Threads: 9
Joined: 2015 Mar
Thanks: 4
Given 21 thank(s) in 7 post(s)
Country:
There's a visible "seam" (for lack of a better word) in picture #2 where it was stitched together.
You may benefit from introducing a slight vertical blur at the join point. I can help with the Avisynth for this if you'd like. Let me know.
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
@ Stamper: yes, various sources patched together - usually just adding top and bottom, as in #2 and #3, but #1 needed a resize, and a inpainting - I'm still not sure it would be good in motion, though; they are all 1080i/p, so no need for 720p.
@ AntcuFaalb: Picture #2? Sure isn't picture #1?
Yes, I'm aware that the "slices" are not perfectly harmonized, because the different sources have quite remarkably different color grading, so it's hard to match them perfectly, but I'm working on this... your help is very appreciated, I'll count on it if needed!
Posts: 129
Threads: 9
Joined: 2015 Mar
Thanks: 4
Given 21 thank(s) in 7 post(s)
Country:
2017-06-14, 06:13 PM
(This post was last modified: 2017-06-14, 06:14 PM by AntcuFaalb.)
Andrea: The basic idea is…
1. Stitch the two clips together however you do it now.
2. Crop from the top and bottom in Avisynth to create a second clip which is just the "seam" and a little above and below. The frame size should be the same width as the source, but with a height like 8px or so.
3. Apply vertical blur or perhaps a Gaussian.
4. Using the numbers from the crop before, get two other clips: (1) above, (2) below.
5. Use StackVertical twice to put them all back together.
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
Yep, got it, but I'm more concerned about different colors in the top and bottom patches than the seam itself... indeed, if (when) both sources would get the same exact (well, at least almost perfect) color grading, *I guess* seam would pass unnoticed... what do you think?
Posts: 1,554
Threads: 60
Joined: 2015 Jan
Thanks: 229
Given 627 thank(s) in 372 post(s)
Country:
StackVertical() will take more than two clips, so you need call it only once.
Posts: 7,153
Threads: 601
Joined: 2015 Jan
Thanks: 1081
Given 1466 thank(s) in 963 post(s)
Country:
Something like this?
Code: oar =avisource("original-aspect-ratio.avi")
om =avisource("open-matte.avi")
ov =overlay(oar,om,0,y)
seam1=ov.crop(0,y -4,0,8)#.some blur here
seam2=ov.crop(0,y+z-4,0,8)#.some blur here
stackvertical\
(ov.crop(0,0,0,y-4)\
,seam1\
,ov.crop(0,y+4,0,y+z-4)\
,seam2,\
ov.crop(0,y+z+4,0,0)\
|