LeslieGerman
LeslieGerman
> By the way, anybody knows, how to get py::array_t from std::shared_ptr without copy (and using new/delete)? @arquolo , you might be interested in what I have found: https://github.com/pybind/pybind11/issues/323#issuecomment-575717041
> What are you trying to achieve? Well, first just experimenting... I want to achieve something like the abandoned vips streaming branch would do, but with manual-coding on top of...
Just a note: I'm aware that not all image types are streamable, like [you mentioned it here.](https://github.com/lovell/sharp/issues/30#issuecomment-46960443)
Hi John, How much effort do you think it would take to finish and merge the streaming branch? It seems to me the task consists of 2 steps: 1. finish...
> let the author conditionally define "url and no url based includes"? Good point, but right now I don't see a reason to distinguish that. > I think it is...
On Windows position independent code is not used, i.e. compilers do not generate position independent code. DLL: dynamic linking lib: means upon first load of the DLL, the actual memory...
I vote for a complete C/C++ API. Cheers ;)
Hi all, I use a CMake based project, so I don't have access to "Linker / General - Use Library Dependency Inputs" settings. For me adding the [/WHOLEARCHIVE:my_lib_which_contains_all_my_code.lib](https://docs.microsoft.com/en-us/cpp/build/reference/wholearchive-include-all-library-object-files?view=vs-2019) to the...