omg..... after like 2 weeks of god sced and all my noobs now lvl 20+ and i put bone burying true and etc. all i could do to get leo but..... nothing :(
Printable View
omg..... after like 2 weeks of god sced and all my noobs now lvl 20+ and i put bone burying true and etc. all i could do to get leo but..... nothing :(
thanks guys for all your help!
Welcomes =)
-_- if the stupid website boreas put these on wasnt gay
i know...everytime after you downlaod one you have to wait 19 mins.
edit:for some reason my winrar didn't extract like 60 of the pics
Here
OMG! Smartzkid just compressed 700 megs of pix into a >4 meg package!?!
:p If you don't belive me, try it.
http://smartzkid.googlepages.com/untitled.bmp
PS: No lie.
Compression Ratio: 0.5%.
works perfectly thanks!
I wanted to upload multiple files at once and leave it :p
Nice find Smartz
Ah, thanks Boreas ;)
@ Smartz
Oooh, that with WinRAR?
Cool :D
I guess that answers my question about if there's a limit on file zipping :p
Now to condense my HD down to about a gig or two... ((h))
:p Boreas posted a link to it (actually a mirror of it)
It uses compression called UHARC. The program I used is called WinUHA
(PS: It took me ~7 minutes to compress the 700 mb (core 2 duo 6600))
*looks again*
Ah, found it ;)
Thanks
Are you searious? All of those pics into a 4mb package? WOWz
Offtopic -> Whats the site for all the virusscanners? :) I have been looking for one.
So has XcanadamanX done htis, or did he lose interest?
Well, if you're still interested...
i hit a block so i stopped for awhile but ive been really busy for the past 2 weeks so hopefully ill be back at it once the next week is done
Any updates?
yeah hows the solver doing?
ive been busy working on my smelter. ill probably start working on it again next week
Maybe when piv's plugin comes out it will be easier... I don't know though.
Just to throw this out there, Lorax uses luminance for detecting edges and it works really good.
EDIT: Here's an example of using luminance for it. This'll find the spinning tablet thingy's dimensions. Just fill in line 88 with a path to a clear picture of the tablet. It takes a second or two though.Oh and if you want, I'll do anything to help with making it.SCAR Code:program New;
var
BMP: TBitmap;
B: TBox;
function CompareLum(col1, col2: Integer): Extended;
var
H, S, L: Array [1..2] of Extended;
begin
ColortoHSL(col1, H[1], S[1], L[1]);
ColortoHSL(col2, H[2], S[2], L[2]);
Result:= Abs(L[1] - L[2]);
end;
function GetHighestPoint(P: TPointArray; X: Boolean): Integer;
var
CurHigh, I: Integer;
begin
if(X)then
CurHigh:= P[0].x
else
CurHigh:= P[0].y;
for I:= 0 to Length(P) - 1 do
begin
if(X)then
if(CurHigh < P[I].x)then
CurHigh:= P[I].x;
if(not(X))then
if(CurHigh < P[I].y)then
CurHigh:= P[I].y;
end;
Result:= CurHigh;
end;
function GetLowestPoint(P: TPointArray; X: Boolean): Integer;
var
CurLow, I: Integer;
begin
if(X)then
CurLow:= P[0].x
else
CurLow:= P[0].y;
for I:= 0 to Length(P) - 1 do
begin
if(X)then
if(CurLow > P[I].x)then
CurLow:= P[I].x;
if(not(X))then
if(CurLow > P[I].y)then
CurLow:= P[I].y;
end;
Result:= CurLow;
end;
function GetBox(P: TPointArray): TBox;
begin
Result.x1:= GetLowestPoint(P, True);
Result.x2:= GetHighestPoint(P, True);
Result.y1:= GetLowestPoint(P, False);
Result.y2:= GetHighestPoint(P, False);
end;
function FindBox: TBox;
var
SearchBox: TBox;
x, y: Integer;
P: TPointArray;
begin
SearchBox:= IntToBox(96, 45, 424, 292);
for y:= SearchBox.y1 to SearchBox.y2 do
for x:= SearchBox.x1 to SearchBox.x2 do
begin
if((Y mod 3) = 0)then
if((X mod 2) = 0)then
if(CompareLum(GetDebugCanvas.Pixels[x, y], GetDebugCanvas.Pixels[x + 1, y]) > 4)then
begin
SetLength(P, Length(P) + 1);
P[Length(P) - 1].x:= x;
P[Length(P) - 1].y:= y;
end;
end;
Result:= GetBox(P);
end;
begin
BMP:= TBitmap.Create;
DisplayDebugImgWindow(741, 465);
BMP.LoadFromFile('');
SafeCopyCanvas(BMP.Canvas, GetDebugCanvas, 0, 0, BMP.Width, BMP.Height, 0, 0, BMP.width, BMP.height);
B:= FindBox;
writeln(inttostr(B.x1) + ', ' + inttostr(B.y1) + ', ' + inttostr(B.x2) + ', ' + inttostr(B.y2));
end.
Bumping is fun =]
http://www.srl-forums.com/forum/showthread.php?t=19095
Evil people beating you to it ;)
^^ and thats why i stopped.
Edit: AND STOP GRAVEDIGGING. lol sorry but seriously...
never got this random... looks cool :\