c13proto
c13proto
I faced same problem. In my case, I remade annotation images not including value of '255' and works. https://github.com/DrSleep/tensorflow-deeplab-resnet/issues/107#issuecomment-325857231
Thank you so much .I have not full understood your code yet so I am not sure what is VideoRawdata_VC0_raw_data inside. But I think VideoRawdata_VC0_raw_data is too short(1208 length). I...
@danielhrisca I found _load_signal_data method returns 4byte bigger data for each frame compare to get method. How can I get this offset information? ```python from asammdf import MDF from asammdf.blocks.cutils...
> the data includes also a 4 byte header that holds the frame length I understand, thank you. I tried below code. ```python for i,info in enumerate(group.get_signal_data_blocks(channel_index)): print(i,info) ``` output...
@danielhrisca Sorry, I am still facing problem, Please let me reopen. I have another very big mdf file(more than 30GB). Below constructor takes more than 120 seconds with this file....
@danielhrisca I think I need to change library to access temporary object by c++. https://github.com/danielhrisca/asammdf/blob/master/asammdf/blocks/mdf_v4.py#L312 ```python #self._tempfile = TemporaryFile(dir=self.temporary_folder) self._tempfile = NamedTemporaryFile(dir=self.temporary_folder) ``` If possible, I want you make option...