mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-02-15 07:18:42 +01:00
can get individual rois, but not connected to command yet
This commit is contained in:
@@ -1383,7 +1383,13 @@ void Detector::setRxArping(bool value, Positions pos) {
|
||||
pimpl->Parallel(&Module::setRxArping, pos, value);
|
||||
}
|
||||
|
||||
std::vector<defs::ROI> Detector::getRxROI() const { return pimpl->getRxROI(); }
|
||||
std::vector<defs::ROI> Detector::getRxROI() const {
|
||||
return pimpl->getRxROI();
|
||||
}
|
||||
|
||||
Result<std::array<defs::ROI, 2>> Detector::getRxROI(int module_id) const {
|
||||
return pimpl->Parallel(&Module::getRxROI, {module_id});
|
||||
}
|
||||
|
||||
// RxROIs can be set for all types except CTB. At multi level without gap pixels
|
||||
void Detector::setRxROI(const std::vector<defs::ROI> &args) {
|
||||
@@ -1392,9 +1398,6 @@ void Detector::setRxROI(const std::vector<defs::ROI> &args) {
|
||||
|
||||
void Detector::clearRxROI() { pimpl->clearRxROI(); }
|
||||
|
||||
int Detector::getNumberOfUdpPortsInRxROI() const {
|
||||
return pimpl->getNumberOfUdpPortsInRxROI();
|
||||
}
|
||||
|
||||
// File
|
||||
|
||||
|
||||
Reference in New Issue
Block a user