Skip to content

Commit

Permalink
Change Japanese comments in the code to English
Browse files Browse the repository at this point in the history
  • Loading branch information
kambara committed Jul 18, 2022
1 parent 9220f09 commit 69ca478
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/org/sappari/air_visualizer/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class MainActivity : AppCompatActivity() {
addToRecentQuadMarkers(quadMarkers)
backgroundCaptureDelayCount++
if (backgroundCaptureDelayCount >= 10) {
// Startボタンタップ時のブレ対策のため少し遅らせる
// Slight delay to prevent blurring when tapping the Start button.
background = extractMarkerArea(gray, averageRecentQuadMarkers())
backgroundCaptureDelayCount = 0
backgroundCaptureState = BackgroundCaptureState.CAPTURED
Expand All @@ -236,7 +236,7 @@ class MainActivity : AppCompatActivity() {
// Update quadMarkers
markerDetectionLoopCount++
if (markerDetectionLoopCount >= 20) {
// マーカー検出は重いので数フレームおきに実行
// Marker detection is slow, so run at intervals
val quadMarkers = detectQuadMarkers(gray)
if (quadMarkers != null) {
addToRecentQuadMarkers(quadMarkers)
Expand Down

0 comments on commit 69ca478

Please sign in to comment.