Questions tagged [raw]

204 questions
-1
votes
1 answer

16 bit raw image processing libraries for Python?

Are there any good libraries for Python that can do various image processing functions like White Balance, Histogram Equalization, etc, with 16 bit raw image files? I've searched for something like that for a while but couldn't come up with…
TheTomer
  • 143
  • 3
  • 11
-1
votes
2 answers

C++ library to convert JPEG/PNG images to RAW image format

I have tried searching for a day for converting JPEG & PNG to RAW image format(*.raw format), but couldn't find any and all the result were RAW to JPEG/PNG. Finally i decided to ask here hoping will get the answer. So, i want to convert images of…
Aasim
  • 113
  • 2
  • 14
-2
votes
0 answers

ExifTool - escape character

ExifTool is a scripting program (cmd and GUI) that uses custom metalanguage with its own syntax and commands. There are tens of questions about ExifTool on this site already, with valid answers. Thus, the question, just like the others about that…
-2
votes
2 answers

How post raw gson using retrofit android and how to create a model class for this

{ "cart":[ { "id": 6083,"ProductId": 27,"UserRegistrationId": 44,"TotalQuantity": 2,"Status":"CheckOut","Price": 1800 }, { "id": 6085,"ProductId": 26, "UserRegistrationId":44, "TotalQuantity":2,…
-2
votes
1 answer

Ansible error Shared connection to myhost1 closed. when using raw module

My ansible target server is SunOS. I get Ansible error Shared connection to myhost1 closed. when using raw module. The error does not show when i change module to shell however, the execution of script start.sh does not happen (evident from outout…
Ashar
  • 2,942
  • 10
  • 58
  • 122
-2
votes
1 answer

long raw to pdf

good afternoon, I am in need of help to read a field in the Oracle database. I have a long raw field that contains a pdf and I need to save it to a file. Does anyone have any suggestions on how I can do it?
-4
votes
1 answer

When does that "r", for raw string, not make a difference

I wrote some simple test code to experiment with. #begin code Python 2.7.12 running in Windows command window import re s2='''corn grows higher\n still. ''' print (s2) print (re.sub('\n', '~', s2),"test a") print (re.sub(r'\n', '~', s2),"test…
CL1
  • 1
  • 3
1 2 3
13
14