KK Mehta
KK Mehta
Hey @jsbroks, Thanks for your response! Yeah, it's running behind Nginx
Hi @jsbroks can you suggest something to do about this issue? Perhaps some changes needed in the Nginx configuration file?
@nmanovic How do we build the branch where the patch is available? from what i've learned so far, [this ](https://github.com/openvinotoolkit/cvat/tree/bs/masks) seems to be the branch. i tried locally building it...
Well I chose chat SDK because it has a lot of options for my application when I want to scale it up. Currently however, I'm only looking to implement a...
@bensmiley Thanks a lot! @HarshitaSahai can you also take a look at this?
I am facing a similar issue too. I'm looking to send the image blob to a post request. Did you find any solution?
According to cornerstone's image documentation, there's a function called getImage() that describes the same thing you want. I also tried it, but I get an error that there's no such...
If you're running orthanc for your database, they have an API to get the image png if you give them an instance id. I'm not sure at the moment of...
any updates on this? really want to load the raw image pixel data into png..
Hello! If you want to get the blob, all you have to do is: ``` const activeEnabledElement = cornerstone.getEnabledElements()[0] cornerstone.loadImage(activeEnabledElement.image.imageId).then(image => { const imageBlob = image.getCanvas().toDataURL('image/png'); }); ```