-
Notifications
You must be signed in to change notification settings - Fork 1
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
Option to keep orthoimagery (RGB+NIR) when colorizing a LAS #3
Conversation
Revue prise en compte. |
@CharlesGaydon Est-ce que tu pourrais faire un rebase sur dev stp? (maintenant qu'il y a des données de test) |
1058e11
to
16ca0e7
Compare
|
@leavauchier @gliegard Prêt à merge à mon avis :) |
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.
ça me dérange un peu que dans tes modifications, il y a aussi le fait de passer un linter sur le code. Je préfèrerai qu'il n'y ait que tes modifications "utiles" aux concepts de fichiers temporaires.
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.
Il faudra aussi rebase et s'adapter au changelog et à la version qui ont évoluées entre temps
8f7f647
to
ae9863c
Compare
Bonjour, J'ai ré arrangé les commit de Charles pour avoir
Et le passage en version 1.2.0 , version mineure, car garder les fichier tmp est une nouvelle fonctionnalité. Pour moi on peut merger. Je laisse Léa approuver. |
Merci Guillaume. Pour le linting j'ai un paramétrage non-standard dans mon VS Code (qui correspond à celui de pacasam avec 144 caractères max). Est-ce que vous appliquez black systématiquement sur ign-pdal-tools ? Si oui, avec la longueur de caractère par défaut de black (88) ? Ca peut être une valeur à indiquer dans pyproject.toml (cf. lien pacasam). |
@leavauchier J'ai ouvert une issue sur un bug qui occurt durant la colorisation et qui pourrait être corrigé facilement dans cette PR avant de merge : #14 |
During colorization, there may be two use cases where it is desirable to keep the orthoimages:
I propose simply returning the temporary paths used in
decomp_and_color
, which prevents automatic deletion of temporary files as long as their file is maintained within the execution scope.No breaking changes, and the usage is as follows:
tmp_ortho, tmp_ortho_irc = decomp_and_color(*args, **kwargs)
Simply using
decomp_and_color(*args, **kwargs)
still destroys the temporarty files since their reference is out of scope (they are garbage collected)