Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
perf: skip frames, roi, fixed aspect ratio #225
base: tier4/universe
Are you sure you want to change the base?
perf: skip frames, roi, fixed aspect ratio #225
Changes from 65 commits
7622989
cdfddc0
e1d3baa
75ac158
8542655
ae33f40
81aaf2f
bd32252
74c8227
d6261a2
2539a4b
cf3e90f
ef16e47
c5b1ea8
51b91ce
ac6dea5
c22e13e
39ff37d
f05f89d
7954185
b5acf20
498cc45
fc83b36
c8e8db0
316f694
ef13c4c
12e91d1
a5d1965
f2ad5cc
50dff64
ee41821
62ed75a
43b9b92
bce18ef
185f319
d8ab908
d1347cb
8b6298a
959d2f8
ff5e7c0
f1eadd7
f1d3936
066acd1
9d33e68
ba0e889
2bda2c6
06c9829
f89b3ff
0b58b7e
0bb8f19
5864ece
ec063e9
dfe5c0a
2b1a762
d5015a4
963d7f9
8c9e3e4
2f7ac75
56c94dd
c1e02c5
1760894
d987f18
fb0201f
3238d30
e04b647
9f28974
6acce91
551da0c
3025d32
1cd430b
9a2f940
03a497c
9bc13bd
6b4888d
00c929a
c7026ec
96d89a3
bada59d
5781785
a2462e0
6dca0a4
dab57a7
9dba948
0133996
f0536e0
63dfa77
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method became quite long and now has too many branches.
Can you either remove branches/indendation level via refactoring or split what can be split in smaller methods?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm thinking about how to refactor, i see we have the function find chessboard in common I can try to do something about it, I am not sure how clean it is going to look, but I will try
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a bit of refactor here
dab57a7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.lost_frames
is reset in a protected way now, but it is not hereThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe I'm wrong, but we are protecting this value because it might change the max value on the UI side. So, is it necessary to add a lock here?