Erki kirjutas:Tegelikult, üks küsimus on küll! Kuidas see teravustamine ja värviparandus käib? Nt. Gimpi, või irfanviewi peal?
Erki kirjutas:Aga kuidas see kaadrite kokku liitmine käib?
Tarmo Kõlli kirjutas:(aga selle võlukunstiga pole veel jõudnud tegeleda.)
Erki kirjutas:Ok, aga mis programm sobib siis piltide kokkuliitmiseks?
Erki kirjutas:Aga ma ei tahaks raha raisata photoshopi peale.
<?php // content="text/plain; charset=utf-8"
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_line.php');
$rida = $_GET["rida"];
// $rida = 563;
// function readrgbdata($aFile, &$aR_kanal, &$aG_kanal, &$aB_kanal, &$aX_kanal) {
function readrgbdata($aFile, &$aRida, &$aR_kanal, &$aG_kanal, &$aB_kanal) {
$laius = 284;
$algpunkt = 54 + ($aRida * ($laius *3));
$fr = fopen('taevas.bmp', 'rb');
fseek($fr, $algpunkt, SEEK_CUR);
for ( $i=0; $i < ($laius - 1); ++$i ) {
fseek($fr, 0, SEEK_CUR);
$aB_kanal[] = ord (fread($fr, 1));
fseek($fr, 0, SEEK_CUR);
$aR_kanal[] = ord (fread($fr, 1) );
fseek($fr, 0, SEEK_CUR);
$aG_kanal[] = ord (fread($fr, 1) );
// fseek($fr, 0, SEEK_CUR);
// $aX_kanal[] = ord (fread($fr, 1) );
}
fclose($fr);
}
$R_kanal = array();
$G_kanal = array();
$B_kanal = array();
// $X_kanal = array();
// readrgbdata('32bkcw2.bmp',$R_kanal,$G_kanal,$B_kanal,$X_kanal);
readrgbdata('taevas.bmp',$rida,$R_kanal,$G_kanal,$B_kanal);
/*
echo "R : ";
echo $R_kanal[0];
echo " | ";
echo $R_kanal[1];
echo "<BR>";
echo "G : ";
echo $G_kanal[0];
echo " | ";
echo $G_kanal[1];
echo "<BR>";
echo "B : ";
echo $B_kanal[0];
echo " | ";
echo $B_kanal[1];
echo "<BR>";
echo "X : ";
echo $X_kanal[0];
echo " | ";
echo $X_kanal[1];
echo "<BR>";
echo "R : $R_kanal <BR>";
echo "G : $G_kanal <BR>";
echo "B : $B_kanal <BR>";
echo "X : $X_kanal <BR>";
*/
// Width and height of the graph
$width = 950; $height = 550;
// Create a graph instance koos cacega minutites
// $graph = new Graph($width,$height, 'auto', 5);
// ilma caceta
$graph = new Graph($width,$height);
$graph->img->SetAntiAliasing();
// Specify what scale we want to use,
// dat = integer scale for the X-axis
// int = integer scale for the Y-axis
// $graph->SetScale('intlin',0,255);
$graph->SetScale('intlin');
$tickPositions = array();
$tickLabels = array();
$tickPositions[0] = 0;
$tickLabels[0] = '0';
// Setup a title for the graph
$graph->title->Set("Pildi taevas.bmp alt " . $rida . " rea pikslite intensiivsused");
$graph->title->SetMargin(10);
// Setup titles and X-axis labels
$graph->xaxis->SetLabelAngle(90);
// Setup Y-axis title
$graph->yaxis->title->Set('(intensiivsus)');
// Create the linear plot
$lineplot00=new LinePlot($R_kanal);
$lineplot01=new LinePlot($G_kanal);
$lineplot02=new LinePlot($B_kanal);
// Add the plot to the graph
$graph->Add($lineplot00);
$graph->Add($lineplot01);
$graph->Add($lineplot02);
// Paneme joonte v2rvid paika
$lineplot00->SetColor("red");
$lineplot01->SetColor("green");
$lineplot02->SetColor("blue");
// Display the graph
$graph->Stroke();
?>
Erki kirjutas:Töötlesin siis kuu pilti (teravustasin). Kuu pilt tehtud siis läbi binokli ja digikaga.
Kasutajad foorumit lugemas: jeanbb ja 12 külalist