File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,8 @@ class CV_EXPORTS_W GridBoard : public Board {
125
125
const Ptr<Dictionary> &dictionary, int firstMarker = 0 );
126
126
127
127
CV_WRAP Size getGridSize () const ;
128
- CV_WRAP float getMarkerLength ();
129
- CV_WRAP float getMarkerSeparation ();
128
+ CV_WRAP float getMarkerLength () const ;
129
+ CV_WRAP float getMarkerSeparation () const ;
130
130
131
131
protected:
132
132
struct GridImpl ;
Original file line number Diff line number Diff line change @@ -194,11 +194,11 @@ Size GridBoard::getGridSize() const {
194
194
return Size (gridImpl->sizeX , gridImpl->sizeY );
195
195
}
196
196
197
- float GridBoard::getMarkerLength () {
197
+ float GridBoard::getMarkerLength () const {
198
198
return gridImpl->markerLength ;
199
199
}
200
200
201
- float GridBoard::getMarkerSeparation () {
201
+ float GridBoard::getMarkerSeparation () const {
202
202
return gridImpl->markerSeparation ;
203
203
}
204
204
You can’t perform that action at this time.
0 commit comments