[cscore] Move java package to edu.wpi.first.cscore (#3294)

This is more consistent with the other Java packages, and also is more
correct, as we own the first.wpi.edu domain but not the full wpi.edu domain.
This commit is contained in:
Peter Johnson
2021-04-10 11:42:41 -07:00
committed by GitHub
parent d7fabe81fe
commit 3abe0b9d49
40 changed files with 277 additions and 277 deletions

View File

@@ -4,9 +4,9 @@
package edu.wpi.first.wpilibj;
import edu.wpi.cscore.CameraServerJNI;
import edu.wpi.first.cameraserver.CameraServerShared;
import edu.wpi.first.cameraserver.CameraServerSharedStore;
import edu.wpi.first.cscore.CameraServerJNI;
import edu.wpi.first.hal.FRCNetComm.tInstances;
import edu.wpi.first.hal.FRCNetComm.tResourceType;
import edu.wpi.first.hal.HAL;

View File

@@ -453,7 +453,7 @@ public enum BuiltInWidgets implements WidgetType {
* Supported types:
*
* <ul>
* <li>{@link edu.wpi.cscore.VideoSource} (as long as it is streaming on an MJPEG server)
* <li>{@link edu.wpi.first.cscore.VideoSource} (as long as it is streaming on an MJPEG server)
* </ul>
*
* <br>

View File

@@ -4,7 +4,7 @@
package edu.wpi.first.wpilibj.shuffleboard;
import edu.wpi.cscore.VideoSource;
import edu.wpi.first.cscore.VideoSource;
import edu.wpi.first.wpilibj.Sendable;
import edu.wpi.first.wpilibj.smartdashboard.SendableBuilder;
import edu.wpi.first.wpilibj.smartdashboard.SendableRegistry;

View File

@@ -4,7 +4,7 @@
package edu.wpi.first.wpilibj.shuffleboard;
import edu.wpi.cscore.VideoSource;
import edu.wpi.first.cscore.VideoSource;
import edu.wpi.first.wpilibj.Sendable;
import java.util.List;
import java.util.NoSuchElementException;

View File

@@ -4,9 +4,9 @@
package edu.wpi.first.wpilibj.vision;
import edu.wpi.cscore.CvSink;
import edu.wpi.cscore.VideoSource;
import edu.wpi.first.cameraserver.CameraServerSharedStore;
import edu.wpi.first.cscore.CvSink;
import edu.wpi.first.cscore.VideoSource;
import org.opencv.core.Mat;
/**

View File

@@ -4,7 +4,7 @@
package edu.wpi.first.wpilibj.vision;
import edu.wpi.cscore.VideoSource;
import edu.wpi.first.cscore.VideoSource;
/**
* A vision thread is a special thread that runs a vision pipeline. It is a <i>daemon</i> thread; it

View File

@@ -13,7 +13,7 @@
* implements VisionRunner.Listener&lt;MyFindTotePipeline&gt; {
*
* // A USB camera connected to the roboRIO.
* private {@link edu.wpi.cscore.VideoSource VideoSource} usbCamera;
* private {@link edu.wpi.first.cscore.VideoSource VideoSource} usbCamera;
*
* // A vision pipeline. This could be handwritten or generated by GRIP.
* // This has to implement {@link edu.wpi.first.wpilibj.vision.VisionPipeline}.