Post Reply 
ef - a tale of memories - Euphoric Field Animated TV SIZE PV
Beautiful Animated Video - Streamed though EP Video - Downloadable Version Inside
Author Message
Assassinator
...

Posts: 6,646.6190
Threads: 176
Joined: 24th Apr 2007
Reputation: 8.53695
E-Pigs: 140.8363
Offline
Post: #11
RE: ef - a tale of memories - Euphoric Field Animated TV SIZE PV
Senseito Sakura Wrote:
Assassinator Wrote:Give me an example?

Any white-on-black text cut offs - when characters are looking directly at you :P

I think you are mis-understanding what ghosting is.

Ghosting is when you have like afterimages that don't completely disappear. So basically, you have semi-visible remnants of the previous frame/s blended into the current frame.

For a real life example, look at something extremely bright (e.g the sun), and then look away, you will have this semi-transparent image of (part of) the previous view burned into your vision for a while.

Don't think ef has any ghosting.


I think I know exactly what you're talking about. The thing which I did in fact point out to you.

|
V

Assassinator Wrote:(I did say there was some other problem. I'm sure you mean that instead.)

That's a different phenomenon with a completely different origin to that of ghosting. It's called haloing.

But then you shouldn't have even close to 6 halos... (I still want that screenshot Sensei)

Talking about all that stuff made me slightly interested in trying to encode that said DVD (I've got it at home anyway). I'll see how I go.
(This post was last modified: 26/09/2008 07:18 AM by Assassinator.)
26/09/2008 06:36 AM
Find all posts by this user Quote this message in a reply
S7*
Sweet Dreams

Posts: 16,689.4373
Threads: 1,056
Joined: 3rd Apr 2007
Reputation: 14.29926
E-Pigs: 383.2329
Offline
Post: #12
RE: ef - a tale of memories - Euphoric Field Animated TV SIZE PV
Assassinator Wrote:That's a different phenomenon with a completely different origin to that of ghosting. It's called haloing.

But then you shouldn't have even close to 6 halos... (I still want that screenshot Sensei)

Talking about all that stuff made me slightly interested in trying to encode that said DVD (I've got it at home anyway). I'll see how I go.

Haloing hmm? [I only thought of it as ghosting cause that's what you said, but believe what you believe]

Well I used the incorrect treatment - but it still fixes it so I don't really care.

have fun encoding it I suppose~
26/09/2008 09:45 AM
Find all posts by this user Quote this message in a reply
Assassinator
...

Posts: 6,646.6190
Threads: 176
Joined: 24th Apr 2007
Reputation: 8.53695
E-Pigs: 140.8363
Offline
Post: #13
RE: ef - a tale of memories - Euphoric Field Animated TV SIZE PV
Senseito Sakura Wrote:Haloing hmm? [I only thought of it as ghosting cause that's what you said, but believe what you believe]

Err....

No, I never said anything about ghosting. What I said, I remember, was something along the lines of "This DVD doesn't look authentic. Here's screenshot. Take a look at (around) the lines. Looks like someone extracted and remade it (and screwed up). That or the studio doesn't know what they're doing"

Look through the IRC logs if you don't believe me. I searched ghosting, there were 2 mentions, both by you. I never said that word. I always knew it was haloing, although I never specifically said the word "haloing' either.

Senseito Sakura Wrote:Well I used the incorrect treatment - but it still fixes it so I don't really care.

What did you do?

Well, if you attempted to fix ghosting, you would've probably also fixed haloing. Ghosting is much more serious, and extremely hard (like impossible) to fix, way harder than haloing.

Try this script
|
V

Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
function DeHalo_alpha(clip clp, float "rx", float "ry", float "darkstr", float "brightstr", float "lowsens", float "highsens", float "ss")
{
rx        = default( rx,        2.0 )
ry        = default( ry,        2.0 )
darkstr   = default( darkstr,   1.0 )
brightstr = default( brightstr, 1.0 )
lowsens   = default( lowsens,    50 )
highsens  = default( highsens,   50 )
ss        = default( ss,        1.5 )

LOS = string(lowsens)
HIS = string(highsens/100.0)
DRK = string(darkstr)
BRT = string(brightstr)
ox  = clp.width()
oy  = clp.height()
uv  = 1
uv2 = (uv==3) ? 3 : 2

halos  = clp.bicubicresize(m4(ox/rx),m4(oy/ry)).bicubicresize(ox,oy,1,0)
are    = mt_lutxy(clp.mt_expand(U=uv,V=uv),clp.mt_inpand(U=uv,V=uv),"x y -","x y -","x y -",U=uv,V=uv)
ugly   = mt_lutxy(halos.mt_expand(U=uv,V=uv),halos.mt_inpand(U=uv,V=uv),"x y -","x y -","x y -",U=uv,V=uv)
so     = mt_lutxy( ugly, are, "y x - y 0.001 + / 255 * "+LOS+" - y 256 + 512 / "+HIS+" + *" )
lets   = mt_merge(halos,clp,so,U=uv,V=uv)
remove = (ss==1.0) ? clp.repair(lets,1,0) 
          \        : clp.lanczosresize(m4(ox*ss),m4(oy*ss))
          \             .mt_logic(lets.mt_expand(U=uv,V=uv).bicubicresize(m4(ox*ss),m4(oy*ss)),"min",U=uv2,V=uv2)
          \             .mt_logic(lets.mt_inpand(U=uv,V=uv).bicubicresize(m4(ox*ss),m4(oy*ss)),"max",U=uv2,V=uv2)
          \             .lanczosresize(ox,oy)
them   = mt_lutxy(clp,remove,"x y < x x y - "+DRK+" * - x x y - "+BRT+" * - ?",U=2,V=2)

return( them )
}

function m4(float x) {return(x<16?16:int(round(x/4.0)*4))}


Don't worry if you can't understand it at all, just use. I don't understand all that either. Although I do get the main gist of it.


The HQ version of the ef visual novel OP. Because the streaming version I uploaded sucks. This is the least compressible thing I've ever encoded, and it just doesn't work at that size.

http://zingaburga.com/assassinator/Storage/ef - the latter tale OP [HQ].mkv
(This post was last modified: 26/09/2008 03:14 PM by Assassinator.)
26/09/2008 02:43 PM
Find all posts by this user Quote this message in a reply
S7*
Sweet Dreams

Posts: 16,689.4373
Threads: 1,056
Joined: 3rd Apr 2007
Reputation: 14.29926
E-Pigs: 383.2329
Offline
Post: #14
RE: ef - a tale of memories - Euphoric Field Animated TV SIZE PV
Assassinator Wrote:
Senseito Sakura Wrote:Haloing hmm? [I only thought of it as ghosting cause that's what you said, but believe what you believe]

Err....

No, I never said anything about ghosting. What I said, I remember, was something along the lines of "This DVD doesn't look authentic. Here's screenshot. Take a look at (around) the lines. Looks like someone extracted and remade it (and screwed up). That or the studio doesn't know what they're doing"

Look through the IRC logs if you don't believe me. I searched ghosting, there were 2 mentions, both by you. I never said that word. I always knew it was haloing, although I never specifically said the word "haloing' either.

hehe, must be going nuts then If

anyway - that 'dehaloing function' didn't really do much at all..

Maybe on other frames [though I doubt it], but I'm just working with one frame for now..

Frame 25 from DVD 6.

[The hilarious thing is that I haven't even tried my script on DVD 1 yet.. I got sidetracked by this PV and just continued trying to get somewhere, which I did eventually.. to an extent]


Spoiler for Version Frame 25 Comparison:

Original:
[Image: rbzmvl.png]

'Dehalo Function' [and yes I copy and pasted and made sure nothing was disabling it or such - I know that as much ¬_¬]:
[Image: a2yemb.png]

My Script:
[Image: wilsox.png]


Now I look at it, I know exactly what I need to do now.. its a second, opposite ghost [I'm just calling them that cause I like it now] right next to the one I corrected, except it isn't a brightened ghost, it's a darkened one.. interesting,. Might try add something to my script tomorrow..,


EDIT: Thanks for the up by the way :)
Really like that video
(This post was last modified: 26/09/2008 04:01 PM by S7*.)
26/09/2008 03:59 PM
Find all posts by this user Quote this message in a reply
Assassinator
...

Posts: 6,646.6190
Threads: 176
Joined: 24th Apr 2007
Reputation: 8.53695
E-Pigs: 140.8363
Offline
Post: #15
RE: ef - a tale of memories - Euphoric Field Animated TV SIZE PV
Senseito Sakura Wrote:anyway - that 'dehaloing function' didn't really do much at all..

Maybe on other frames [though I doubt it], but I'm just working with one frame for now..

Increase strength.

I don't have DVD6 on me (only 1 and 2). So I can't do any testing myself.

Senseito Sakura Wrote:Frame 25 from DVD 6.

[The hilarious thing is that I haven't even tried my script on DVD 1 yet.. I got sidetracked by this PV and just continued trying to get somewhere, which I did eventually.. to an extent]



Original:
[Image: rbzmvl.png]

'Dehalo Function' [and yes I copy and pasted and made sure nothing was disabling it or such - I know that as much ¬_¬]:
[Image: a2yemb.png]

My Script:
[Image: wilsox.png]

Hey, that worked really well (your screenshot). What did you do? (you didn't just denoise did you...?)

Senseito Sakura Wrote:Now I look at it, I know exactly what I need to do now.. its a second, opposite ghost [I'm just calling them that cause I like it now] right next to the one I corrected, except it isn't a brightened ghost, it's a darkened one.. interesting,. Might try add something to my script tomorrow..,

... Halo. That's what a halo looks like.

That's some particularly strong haloing though.

Senseito Sakura Wrote:Q16 [Insane] Full Quality | 320kbps AAC ABR (64.4MB)
>> http://www.megaupload.com/?d=AQMJZWOQ

Oh, by the way, HE-AAC is an extremely powerful codec (80kbps HE-AAC > 128kbps MP3). You would never really need 320kbps.

But then it's a very short vid. So I guess it wouldn't hurt the size much.

Senseito Sakura Wrote:EDIT: Thanks for the up by the way :)
Really like that video

Thanks :)
(This post was last modified: 26/09/2008 05:14 PM by Assassinator.)
26/09/2008 04:40 PM
Find all posts by this user Quote this message in a reply
S7*
Sweet Dreams

Posts: 16,689.4373
Threads: 1,056
Joined: 3rd Apr 2007
Reputation: 14.29926
E-Pigs: 383.2329
Offline
Post: #16
RE: ef - a tale of memories - Euphoric Field Animated TV SIZE PV
Assassinator Wrote:
Senseito Sakura Wrote:anyway - that 'dehaloing function' didn't really do much at all..

Maybe on other frames [though I doubt it], but I'm just working with one frame for now..

Increase strength.

I don't have DVD6 on me (only 1 and 2). So I can't do any testing myself.

Senseito Sakura Wrote:Frame 25 from DVD 6.

[The hilarious thing is that I haven't even tried my script on DVD 1 yet.. I got sidetracked by this PV and just continued trying to get somewhere, which I did eventually.. to an extent]



Original:
[Image: rbzmvl.png]

'Dehalo Function' [and yes I copy and pasted and made sure nothing was disabling it or such - I know that as much ¬_¬]:
[Image: a2yemb.png]

My Script:
[Image: wilsox.png]

Hey, that worked really well (your screenshot). What did you do? (you didn't just denoise did you...?)

No I didn't.. I used Ghost-killing filters Hihi

Assassinator Wrote:
Senseito Sakura Wrote:Now I look at it, I know exactly what I need to do now.. its a second, opposite ghost [I'm just calling them that cause I like it now] right next to the one I corrected, except it isn't a brightened ghost, it's a darkened one.. interesting,. Might try add something to my script tomorrow..,

... Halo. That's what a halo looks like.

That's some particularly strong haloing though.

Don't you think, like myself, it's extremely odd for the same thing to occur over MULTIPLE DVDs? Geneon or whoevers responsible should take note of this, this isn't right for the price Anime DVDs go out in Japan for anyway.

It just couldn't be the person who done the ISOs... I mean, it takes effort to inflict what appears to be 2 Main Levels of Haloing.. and like said, it isn't just a minor level. Rawr... I'll see if I can deal with the next (darker) level today..

Assassinator Wrote:
Senseito Sakura Wrote:Q16 [Insane] Full Quality | 320kbps AAC ABR (64.4MB)
>> http://www.megaupload.com/?d=AQMJZWOQ

Oh, by the way, HE-AAC is an extremely powerful codec (80kbps HE-AAC > 128kbps MP3). You would never really need 320kbps.

But then it's a very short vid. So I guess it wouldn't hurt the size much.

I'll keep that in mind..... and HE-AACv2 for extremely low bitrates, right?
27/09/2008 12:52 AM
Find all posts by this user Quote this message in a reply
Assassinator
...

Posts: 6,646.6190
Threads: 176
Joined: 24th Apr 2007
Reputation: 8.53695
E-Pigs: 140.8363
Offline
Post: #17
RE: ef - a tale of memories - Euphoric Field Animated TV SIZE PV
Senseito Sakura Wrote:
Assassinator Wrote:Hey, that worked really well (your screenshot). What did you do? (you didn't just denoise did you...?)
No I didn't.. I used Ghost-killing filters Hihi

That's good. Because if you did denoise it enough to kill the halos, you just killed every detail that's there in the rest of the picture as well. Then I would need to stab you.

Ghost killing filters? Ghosting is generally extremely hard to remove, and even if you do, it won't be a perfect removal, since there is no way to recover what was lost (what was covered by the ghost). Mostly, it's very hard (for the computer) to detect what's a ghost, and what's not.

Which ghost removing filter? Ghostbuster? (« that I think attempts to do subtraction).


Senseito Sakura Wrote:Don't you think, like myself, it's extremely odd for the same thing to occur over MULTIPLE DVDs? Geneon or whoevers responsible should take note of this, this isn't right for the price Anime DVDs go out in Japan for anyway.

It just couldn't be the person who done the ISOs... I mean, it takes effort to inflict what appears to be 2 Main Levels of Haloing.. and like said, it isn't just a minor level. Rawr... I'll see if I can deal with the next (darker) level today..

Could be that it's originally like that, when they produced it. (= studio doesn't know how to sharpen).

But if that's really the case, then wouldn't you think they'd try to remaster the DVDs to remove the halos?


Senseito Sakura Wrote:I'll keep that in mind..... and HE-AACv2 for extremely low bitrates, right?

Yes
27/09/2008 04:27 AM
Find all posts by this user Quote this message in a reply
S7*
Sweet Dreams

Posts: 16,689.4373
Threads: 1,056
Joined: 3rd Apr 2007
Reputation: 14.29926
E-Pigs: 383.2329
Offline
Post: #18
RE: ef - a tale of memories - Euphoric Field Animated TV SIZE PV
Assassinator Wrote:Which ghost removing filter? Ghostbuster? (« that I think attempts to do subtraction).

Ghostbuster I tried already, it failed - doesn't work AviSynth 2.5 v_v

Also tried Exorcist through VDub Filter Loader - but it literally destroyed the image.

I'm using WarpSharp Package EraseGhost now.

Assassinator Wrote:Could be that it's originally like that, when they produced it. (= studio doesn't know how to sharpen).

But if that's really the case, then wouldn't you think they'd try to remaster the DVDs to remove the halos?

Yeah Smokingg



I'm trying to get this last layer and it's such a bastard lololol
(This post was last modified: 27/09/2008 04:36 AM by S7*.)
27/09/2008 04:34 AM
Find all posts by this user Quote this message in a reply
S7*
Sweet Dreams

Posts: 16,689.4373
Threads: 1,056
Joined: 3rd Apr 2007
Reputation: 14.29926
E-Pigs: 383.2329
Offline
Post: #19
RE: ef - a tale of memories - Euphoric Field Animated TV SIZE PV
I've managed to improve my script.

The Second use of the filter was too weak - my bad.

After strength increment, the 'dark line' was gone and the difference was a lot more specific..

I'm going to see if modifiying again or adding a third line will solve it completely... hopefully.

it's all about trial and error isn't it ^^'
27/09/2008 05:10 AM
Find all posts by this user Quote this message in a reply
Assassinator
...

Posts: 6,646.6190
Threads: 176
Joined: 24th Apr 2007
Reputation: 8.53695
E-Pigs: 140.8363
Offline
Post: #20
RE: ef - a tale of memories - Euphoric Field Animated TV SIZE PV
Senseito Sakura Wrote:Original:
[Image: rbzmvl.png]

|
V

[Image: DeHalo.jpg]

That's just on this frame (the only frame I have). Don't know it'll look on the rest of the video.


Senseito Sakura Wrote:it's all about trial and error isn't it ^^'

For filtering, yeah, kind of.

Of course, you need to know where you're heading to start off with, otherwise you'd just get lost.
27/09/2008 06:09 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)

 Quick Theme: