If you need assistance, please send an email to forum at 4hv dot org. To ensure your email is not marked as spam, please include the phrase "4hv help" in the subject line. You can also find assistance via IRC, at irc.shadowworld.net, room #hvcomm.
Support 4hv.org!
Donate:
4hv.org is hosted on a dedicated server. Unfortunately, this server costs and we rely on the help of site members to keep 4hv.org running. Please consider donating. We will place your name on the thanks list and you'll be helping to keep 4hv.org alive and free for everyone. Members whose names appear in red bold have donated recently. Green bold denotes those who have recently donated to keep the server carbon neutral.
Special Thanks To:
Aaron Holmes
Aaron Wheeler
Adam Horden
Alan Scrimgeour
Andre
Andrew Haynes
Anonymous000
asabase
Austin Weil
barney
Barry
Bert Hickman
Bill Kukowski
Blitzorn
Brandon Paradelas
Bruce Bowling
BubeeMike
Byong Park
Cesiumsponge
Chris F.
Chris Hooper
Corey Worthington
Derek Woodroffe
Dalus
Dan Strother
Daniel Davis
Daniel Uhrenholt
datasheetarchive
Dave Billington
Dave Marshall
David F.
Dennis Rogers
drelectrix
Dr. John Gudenas
Dr. Spark
E.TexasTesla
eastvoltresearch
Eirik Taylor
Erik Dyakov
Erlend^SE
Finn Hammer
Firebug24k
GalliumMan
Gary Peterson
George Slade
GhostNull
Gordon Mcknight
Graham Armitage
Grant
GreySoul
Henry H
IamSmooth
In memory of Leo Powning
Jacob Cash
James Howells
James Pawson
Jeff Greenfield
Jeff Thomas
Jesse Frost
Jim Mitchell
jlr134
Joe Mastroianni
John Forcina
John Oberg
John Willcutt
Jon Newcomb
klugesmith
Leslie Wright
Lutz Hoffman
Mads Barnkob
Martin King
Mats Karlsson
Matt Gibson
Matthew Guidry
mbd
Michael D'Angelo
Mikkel
mileswaldron
mister_rf
Neil Foster
Nick de Smith
Nick Soroka
nicklenorp
Nik
Norman Stanley
Patrick Coleman
Paul Brodie
Paul Jordan
Paul Montgomery
Ped
Peter Krogen
Peter Terren
PhilGood
Richard Feldman
Robert Bush
Royce Bailey
Scott Fusare
Scott Newman
smiffy
Stella
Steven Busic
Steve Conner
Steve Jones
Steve Ward
Sulaiman
Thomas Coyle
Thomas A. Wallace
Thomas W
Timo
Torch
Ulf Jonsson
vasil
Vaxian
vladi mazzilli
wastehl
Weston
William Kim
William N.
William Stehl
Wesley Venis
The aforementioned have contributed financially to the continuing triumph of 4hv.org. They are deserving of my most heartfelt thanks.
Registered Member #2140
Joined: Tue May 26 2009, 09:16PM
Location:
Posts: 53
Ok, so i have been thinking about this for awhile and i have absolutely no idea how to implement it. The way i am seeing it, i would have to have huge multi-dimensional arrays in order to store the differences of smaller matches, which can be added for bigger patches. Any hints?
EDIT: More questions Until now, to find the difference of the blocks, i have been doing
diff = 0;
for (int i = 0; i < x; i++) {
for (int d = 0; d < y; d++) {
int bdiff = Math.abs(block.getBlue(i, d) - block2.getBlue(i, d));
int rdiff = Math.abs(block.getRed(i, d) - block2.getRed(i, d));
int gdiff = Math.abs(block.getGreen(i, d) - block2.getGreen(i, d));
diff += (rdiff + gdiff + bdiff);
}
}
where block and block2 are the blocks being compared, and x and y are the width and height of the blocks.
I just tried this:
diff = 0;
for (int i = 0; i < x; i++) {
for (int d = 0; d < y; d++) {
int s1 = block.getBlue(i, d) + block.getRed(i, d) + block.getGreen(i, d);
int s2 = block2.getBlue(i, d) + block2.getRed(i, d) + block2.getGreen(i, d);
diff += Math.abs(s2-s1);
}
}
and although the results are different, they are very close. Which one should i use? One compares the R,G, and B values individually, and the second compares them as a whole.
If the second one is fine, than caching the sums becomes much much easier.
EDIT: Is one comparing brightness and the other colors?
EDIT EDIT: I did some more expirimenting with gray scale images, and they are almost exactly the same results (very minor insignificant differences). I need to make sure with different pictures, but i am fairly sure i can stay with gray scale. On a 34 minute scan i previously did with a color image, it took 24 minutes with gray scale. This is the color result: and the grey-scale looks the same at first glance. Both same filters.
This should make it significantly easier to store previous sums, further increasing speed.
Registered Member #2140
Joined: Tue May 26 2009, 09:16PM
Location:
Posts: 53
Do you think it will be fine to compare the whole sums of each patch rather than each pixel? This would negate the effect of the pixel's position, and compares it as a whole. This would be easier to cache the sums
EDIT: Nevermind. Did some testing, doesn't work well
This site is powered by e107, which is released under the GNU GPL License. All work on this site, except where otherwise noted, is licensed under a Creative Commons Attribution-ShareAlike 2.5 License. By submitting any information to this site, you agree that anything submitted will be so licensed. Please read our Disclaimer and Policies page for information on your rights and responsibilities regarding this site.