次のコードを使用して、OV7670 カメラ、mbed、およびレーザーを使用しています。
void CameraSnap(){
led4 = 1;
// Kick things off by capturing an image
camera.CaptureNext();
while(camera.CaptureDone() == false);
camera.ReadStart();
t1 = t.read_ms();
unsigned colorpixel;
unsigned int byte1, byte2;
int x;
int y;
int i = 0;
for (int i=0; i < SIZEX; i++) {
Maximo[i] = 0;
PuntosMaximo[i] = 0;
}
for(y = 0; y<SIZEY; y++)
for(x = 0; x<SIZEX; x++)
{
// Read in the first half of the image
if(format == 'b')
{
camera.ReadOnebyte();
}
else
if(format == 'y' || format == 'r')
{
byte1 = camera.ReadOnebyte();
//pc.putc(byte1);
}
// Read in the Second half of the image
byte2 = camera.ReadOnebyte();
red = (byte1 & 0xF8)>>3;
green = (((byte1 << 8) | byte2) & 0x5E)>>5;
blue = (byte2 & 0x1F);
unsigned short data = (red+ green + blue) /3;
pc.putc(data);
if ((red > Maximo[x] )&& (green < 10) && (blue < 10 )) {
Maximo[x] = rojo;
PuntosMaximo[x] = y;
}
}
camera.ReadStop();
t2 = t.read_ms();
プログラムで RGB 24 ビット画像から最大強度ピクセルを保存したいのですMaximo[i]
が、OV7670 グラバー ( https://mbed.org/users/edodm85/code/OV7670_Test_Code/file/d0d4760d32b2/main.cpp ) では表示されるだけです。黒と白のイメージ。
アドバイスをお願いできますか?前もって感謝します!