Go to Post Legend has it that Brandon installs the server in a bulletproof case shortly before Kickoff. That way, when the server explodes, the damage to surrounding things is minimal. - Billfred [more]
Home
Go Back   Chief Delphi > Technical > Programming > C/C++
CD-Media   CD-Spy  
portal register members calendar search Today's Posts Mark Forums Read FAQ rules

 
 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Spotlight this post!  
Unread 02-15-2012, 06:53 PM
cddp14 cddp14 is offline
Registered User
FRC #1270
 
Join Date: Feb 2007
Location: Clevleand, Oh
Posts: 10
cddp14 is an unknown quantity at this point
Trouble with code for camera

Right now I am working some of the code form the 2010Vision Sample code. Here is what i have.
if (trigger = stick->GetTrigger())
{
//if (trigger != lastTrigger) // if there's a fresh and we're at the previous target heading then
// get a camera image and process it
if (camera.IsFreshImage())
{
// get the camera image

HSLImage *image = camera.GetImage();
//HSLImage *image;
//image = new HSLImage("/10ft2.jpg"); // get the sample image from the cRIO flash
BinaryImage *thresholdImage = image->ThresholdHSL(threshold); // get just the red target pixels
BinaryImage *bigObjectsImage = thresholdImage->RemoveSmallObjects(false, 2); // remove small objects (noise)
BinaryImage *convexHullImage = bigObjectsImage->ConvexHull(false); // fill in partial and full rectangles
BinaryImage *filteredImage = convexHullImage->ParticleFilter(criteria, 2); // find the rectangles
vector<ParticleAnalysisReport> *reports = filteredImage->GetOrderedParticleAnalysisReports(); // get the results
int b = 0;
for (unsigned i = 0; i < reports->size(); i++)
{
ParticleAnalysisReport *r = &(reports->at(i));
DS->DriverStationLCD:rintf(DriverStationLCD::kUser_ Line1,1,"Particle: %d center_mass: %d \n",r->center_mass_x);
//DS->DriverStationLCD::UpdateLCD();
//printf("particle: %d center_mass_x: %d\n", i, r->center_mass_x);
b = r->center_mass_x;


}

When I press the trigger to get an image I lose communication with the robot. After a minute or two it robots and I can enable and drive. I tested the orginal code with added printf statements to to get an understanding of how it works and I did not have this problem. Is something wrong with my code?
Reply With Quote
 


Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 10:23 AM.

The Chief Delphi Forums are sponsored by Innovation First International, Inc.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi