@@ -14,7 +14,7 @@ namespace MarkerLessARExample
14
14
/// <summary>
15
15
/// Pattern capture.
16
16
/// </summary>
17
- [ RequireComponent ( typeof ( WebCamTextureToMatHelper ) ) ]
17
+ [ RequireComponent ( typeof ( MultiSource2MatHelper ) ) ]
18
18
public class CapturePattern : MonoBehaviour
19
19
{
20
20
/// <summary>
@@ -28,9 +28,9 @@ public class CapturePattern : MonoBehaviour
28
28
Texture2D texture ;
29
29
30
30
/// <summary>
31
- /// The webcam texture to mat helper.
31
+ /// The multi source to mat helper.
32
32
/// </summary>
33
- WebCamTextureToMatHelper webCamTextureToMatHelper ;
33
+ MultiSource2MatHelper multiSource2MatHelper ;
34
34
35
35
/// <summary>
36
36
/// The pattern rect.
@@ -57,6 +57,11 @@ public class CapturePattern : MonoBehaviour
57
57
/// </summary>
58
58
MatOfKeyPoint keypoints ;
59
59
60
+ /// <summary>
61
+ /// The FPS monitor.
62
+ /// </summary>
63
+ FpsMonitor fpsMonitor ;
64
+
60
65
// Use this for initialization
61
66
void Start ( )
62
67
{
@@ -83,37 +88,39 @@ void Start()
83
88
}
84
89
}
85
90
86
- webCamTextureToMatHelper = gameObject . GetComponent < WebCamTextureToMatHelper > ( ) ;
87
-
88
- webCamTextureToMatHelper . Initialize ( ) ;
91
+ multiSource2MatHelper = gameObject . GetComponent < MultiSource2MatHelper > ( ) ;
92
+ multiSource2MatHelper . outputColorFormat = Source2MatHelperColorFormat . RGBA ;
93
+ multiSource2MatHelper . Initialize ( ) ;
89
94
90
95
detector = ORB . create ( ) ;
91
96
detector . setMaxFeatures ( 1000 ) ;
92
97
keypoints = new MatOfKeyPoint ( ) ;
93
98
}
94
99
95
100
/// <summary>
96
- /// Raises the web cam texture to mat helper initialized event.
101
+ /// Raises the source to mat helper initialized event.
97
102
/// </summary>
98
- public void OnWebCamTextureToMatHelperInitialized ( )
103
+ public void OnSourceToMatHelperInitialized ( )
99
104
{
100
- Debug . Log ( "OnWebCamTextureToMatHelperInitialized " ) ;
105
+ Debug . Log ( "OnSourceToMatHelperInitialized " ) ;
101
106
102
107
103
- Mat webCamTextureMat = webCamTextureToMatHelper . GetMat ( ) ;
108
+ Mat rgbaMat = multiSource2MatHelper . GetMat ( ) ;
104
109
105
- texture = new Texture2D ( webCamTextureMat . width ( ) , webCamTextureMat . height ( ) , TextureFormat . RGB24 , false ) ;
106
- rgbMat = new Mat ( webCamTextureMat . rows ( ) , webCamTextureMat . cols ( ) , CvType . CV_8UC3 ) ;
107
- outputMat = new Mat ( webCamTextureMat . rows ( ) , webCamTextureMat . cols ( ) , CvType . CV_8UC3 ) ;
110
+ texture = new Texture2D ( rgbaMat . width ( ) , rgbaMat . height ( ) , TextureFormat . RGB24 , false ) ;
111
+ rgbMat = new Mat ( rgbaMat . rows ( ) , rgbaMat . cols ( ) , CvType . CV_8UC3 ) ;
112
+ outputMat = new Mat ( rgbaMat . rows ( ) , rgbaMat . cols ( ) , CvType . CV_8UC3 ) ;
108
113
109
- gameObject . transform . localScale = new Vector3 ( webCamTextureMat . width ( ) , webCamTextureMat . height ( ) , 1 ) ;
114
+ // Set the Texture2D as the main texture of the Renderer component attached to the game object
115
+ gameObject . GetComponent < Renderer > ( ) . material . mainTexture = texture ;
110
116
117
+ // Adjust the scale of the game object to match the dimensions of the texture
118
+ gameObject . transform . localScale = new Vector3 ( rgbaMat . width ( ) , rgbaMat . height ( ) , 1 ) ;
111
119
Debug . Log ( "Screen.width " + Screen . width + " Screen.height " + Screen . height + " Screen.orientation " + Screen . orientation ) ;
112
120
113
-
114
- float width = webCamTextureMat . width ( ) ;
115
- float height = webCamTextureMat . height ( ) ;
116
-
121
+ // Adjust the orthographic size of the main Camera to fit the aspect ratio of the image
122
+ float width = rgbaMat . width ( ) ;
123
+ float height = rgbaMat . height ( ) ;
117
124
float widthScale = ( float ) Screen . width / width ;
118
125
float heightScale = ( float ) Screen . height / height ;
119
126
if ( widthScale < heightScale )
@@ -125,27 +132,23 @@ public void OnWebCamTextureToMatHelperInitialized()
125
132
Camera . main . orthographicSize = height / 2 ;
126
133
}
127
134
128
- gameObject . GetComponent < Renderer > ( ) . material . mainTexture = texture ;
129
-
130
135
131
- //if WebCamera is frontFaceing,flip Mat.
132
- if ( webCamTextureToMatHelper . GetWebCamDevice ( ) . isFrontFacing )
133
- {
134
- webCamTextureToMatHelper . flipHorizontal = true ;
135
- }
136
+ // If the WebCam is front facing, flip the Mat horizontally. Required for successful detection.
137
+ if ( multiSource2MatHelper . source2MatHelper is WebCamTexture2MatHelper webCamHelper )
138
+ webCamHelper . flipHorizontal = webCamHelper . IsFrontFacing ( ) ;
136
139
137
140
138
- int patternWidth = ( int ) ( Mathf . Min ( webCamTextureMat . width ( ) , webCamTextureMat . height ( ) ) * 0.8f ) ;
141
+ int patternWidth = ( int ) ( Mathf . Min ( rgbaMat . width ( ) , rgbaMat . height ( ) ) * 0.8f ) ;
139
142
140
- patternRect = new OpenCVForUnity . CoreModule . Rect ( webCamTextureMat . width ( ) / 2 - patternWidth / 2 , webCamTextureMat . height ( ) / 2 - patternWidth / 2 , patternWidth , patternWidth ) ;
143
+ patternRect = new OpenCVForUnity . CoreModule . Rect ( rgbaMat . width ( ) / 2 - patternWidth / 2 , rgbaMat . height ( ) / 2 - patternWidth / 2 , patternWidth , patternWidth ) ;
141
144
}
142
145
143
146
/// <summary>
144
- /// Raises the web cam texture to mat helper disposed event.
147
+ /// Raises the source to mat helper disposed event.
145
148
/// </summary>
146
- public void OnWebCamTextureToMatHelperDisposed ( )
149
+ public void OnSourceToMatHelperDisposed ( )
147
150
{
148
- Debug . Log ( "OnWebCamTextureToMatHelperDisposed " ) ;
151
+ Debug . Log ( "OnSourceToMatHelperDisposed " ) ;
149
152
150
153
if ( rgbMat != null )
151
154
{
@@ -158,20 +161,26 @@ public void OnWebCamTextureToMatHelperDisposed()
158
161
}
159
162
160
163
/// <summary>
161
- /// Raises the web cam texture to mat helper error occurred event.
164
+ /// Raises the source to mat helper error occurred event.
162
165
/// </summary>
163
166
/// <param name="errorCode">Error code.</param>
164
- public void OnWebCamTextureToMatHelperErrorOccurred ( WebCamTextureToMatHelper . ErrorCode errorCode )
167
+ /// <param name="message">Message.</param>
168
+ public void OnSourceToMatHelperErrorOccurred ( Source2MatHelperErrorCode errorCode , string message )
165
169
{
166
- Debug . Log ( "OnWebCamTextureToMatHelperErrorOccurred " + errorCode ) ;
170
+ Debug . Log ( "OnSourceToMatHelperErrorOccurred " + errorCode + ":" + message ) ;
171
+
172
+ if ( fpsMonitor != null )
173
+ {
174
+ fpsMonitor . consoleText = "ErrorCode: " + errorCode + ":" + message ;
175
+ }
167
176
}
168
177
169
178
// Update is called once per frame
170
179
void Update ( )
171
180
{
172
- if ( webCamTextureToMatHelper . IsPlaying ( ) && webCamTextureToMatHelper . DidUpdateThisFrame ( ) )
181
+ if ( multiSource2MatHelper . IsPlaying ( ) && multiSource2MatHelper . DidUpdateThisFrame ( ) )
173
182
{
174
- Mat rgbaMat = webCamTextureToMatHelper . GetMat ( ) ;
183
+ Mat rgbaMat = multiSource2MatHelper . GetMat ( ) ;
175
184
176
185
Imgproc . cvtColor ( rgbaMat , rgbMat , Imgproc . COLOR_RGBA2RGB ) ;
177
186
Imgproc . cvtColor ( rgbaMat , outputMat , Imgproc . COLOR_RGBA2RGB ) ;
@@ -183,7 +192,7 @@ void Update()
183
192
184
193
Imgproc . rectangle ( rgbMat , patternRect . tl ( ) , patternRect . br ( ) , new Scalar ( 255 , 0 , 0 , 255 ) , 5 ) ;
185
194
186
- Utils . fastMatToTexture2D ( rgbMat , texture ) ;
195
+ Utils . matToTexture2D ( rgbMat , texture ) ;
187
196
}
188
197
}
189
198
@@ -192,7 +201,7 @@ void Update()
192
201
/// </summary>
193
202
void OnDestroy ( )
194
203
{
195
- webCamTextureToMatHelper . Dispose ( ) ;
204
+ multiSource2MatHelper . Dispose ( ) ;
196
205
197
206
detector . Dispose ( ) ;
198
207
if ( keypoints != null )
@@ -214,31 +223,31 @@ public void OnBackButtonClick()
214
223
/// </summary>
215
224
public void OnPlayButtonClick ( )
216
225
{
217
- webCamTextureToMatHelper . Play ( ) ;
226
+ multiSource2MatHelper . Play ( ) ;
218
227
}
219
228
220
229
/// <summary>
221
230
/// Raises the pause button click event.
222
231
/// </summary>
223
232
public void OnPauseButtonClick ( )
224
233
{
225
- webCamTextureToMatHelper . Pause ( ) ;
234
+ multiSource2MatHelper . Pause ( ) ;
226
235
}
227
236
228
237
/// <summary>
229
238
/// Raises the stop button click event.
230
239
/// </summary>
231
240
public void OnStopButtonClick ( )
232
241
{
233
- webCamTextureToMatHelper . Stop ( ) ;
242
+ multiSource2MatHelper . Stop ( ) ;
234
243
}
235
244
236
245
/// <summary>
237
246
/// Raises the change camera button click event.
238
247
/// </summary>
239
248
public void OnChangeCameraButtonClick ( )
240
249
{
241
- webCamTextureToMatHelper . requestedIsFrontFacing = ! webCamTextureToMatHelper . IsFrontFacing ( ) ;
250
+ multiSource2MatHelper . requestedIsFrontFacing = ! multiSource2MatHelper . requestedIsFrontFacing ;
242
251
}
243
252
244
253
/// <summary>
@@ -283,11 +292,11 @@ public void OnSaveButtonClick()
283
292
284
293
if ( GraphicsSettings . defaultRenderPipeline == null )
285
294
{
286
- SceneManager . LoadScene ( "WebCamTextureMarkerLessARExample_Built -in" ) ;
295
+ SceneManager . LoadScene ( "MultiSourceMarkerLessARExample_Built -in" ) ;
287
296
}
288
297
else
289
298
{
290
- SceneManager . LoadScene ( "WebCamTextureMarkerLessARExample_SRP " ) ;
299
+ SceneManager . LoadScene ( "MultiSourceMarkerLessARExample_SRP " ) ;
291
300
}
292
301
}
293
302
}
0 commit comments