View Single Post
  #1   Spotlight this post!  
Unread 20-01-2016, 15:42
origamitaco origamitaco is offline
Registered User
FRC #4328
 
Join Date: Nov 2015
Location: Richmond, TX
Posts: 35
origamitaco is an unknown quantity at this point
For those who are having GRIP issues

Whether it be code or deployment, this is how you get it working. Use the example code off of GRIP's GitHub page (https://github.com/WPIRoboticsProjec...a-FRC-program), not ScreenStepsLive. GRIP deploy is clearly buggy, so FTP-ing into the RIO and dropping the opencv-frc jar from %appdata%/local/whatever_grips_folder_is_called and your .grip file into the /home/lvuser folder worked for us. In the code targets/area is just area or centerX etc for us.
Code:
 private final NetworkTable grip = NetworkTable.getTable("grip");
is actually
Code:
  private final NetworkTable grip = NetworkTable.getTable("GRIP/myContoursReport");
for us.
Reply With Quote