Questions tagged [raw-file]

16 questions
2
votes
0 answers

Reading and plotting .raw file data in R

I have .raw file data which contained the climate data. The data was pre-processed by other people (not me). This is the correct image plotted by other software. enter image description here Now I want to plot and re-analyze the data in R. I have…
Sean Wu
  • 21
  • 2
2
votes
1 answer

What are advantages and disadvantages of raw files in SSIS and when do we use them?

Could anyone please describe the advantages and disadvantages of Raw file transformations in ssis packages and in which instances do we use them?
Lakshmi
  • 93
  • 1
  • 6
1
vote
1 answer

how can output data from a rawfile or svg?

there! I'm using Ngspice to do circuit simulations. and plot a vector,but i don't know how to export data from an svg or raw file.The circuit is like below. and the netlist is below ivdd 0 nd_pkg_pad 0 ac 1.0 .ac dec 100 10meg 10g .save…
Fo Oc
  • 33
  • 5
1
vote
1 answer

Achieving consistent block sizing in python raw file IO

Question up front: Is there a pythonic way in the standard library for parsing raw binary files using for ... in ... syntax (i.e., __iter__/__next__) that yields blocks that respect the buffersize parameter, without having to subclass IOBase or…
K. Nielson
  • 191
  • 9
1
vote
0 answers

How can I read a RGB raw file in MATLAB?

I have a problem about reading a 8bit two-tap interleaved RGB raw file in MATLAB I followed several answers in web, but I can not find exact form for my one. Is there anyone can help this problem? Following How can I read in a RAW image in MATLAB? I…
1
vote
1 answer

Raw sound files editors, 8bit

I was wondering if anyone knows how to open and edit a raw sound file (raw unsigned 8-bit). I am making my own game and trying to create original 8-bit music. I could not open SoX, and all other editors I have cannot play these frequencies…
Kat
  • 35
  • 6
1
vote
0 answers

How to open a .raw file containing thousands of face images for classification

I'am trying to resolve a classification problem of faces images. The images are in a db_train.raw binary file containing 111430 images. Each one is 56*56*3. The labels are in a separate file with 0 or 1, 111430 lines. Whatever i try, i can't seem to…
1
vote
2 answers

Reading little endian file 8 bits at a time and performing binary operations on it

I want to read 8 bits at a time from a file in little endian format, I think my cpu is also little endian so I need not to worry about the endianess, right? what I am reading are numbers, intensity values of RGGB CFA from a RAW12 file. Here is my…
1
vote
1 answer

Seperate 4 channels (R,G,G,B) of .raw image file and save them as valid image in c++

I have to take a .raw12 file, separate the 4 channels (R, G, G, B) and save them as valid images (8-bits in memory) without using any external library (.ppm) in C++. You can read about raw12 here and ppm file format here. I have written the code but…
Tukai
  • 13
  • 1
  • 8
0
votes
1 answer

Issue with Unity cross-promotion button opening raw text file instead of redirecting to Google Play link

I'm currently working on a Unity project and have implemented a cross-promotion button that should open a Google Play link for my app. However, when I click the button, it opens a raw text file hosted on GitHub instead of redirecting to the Google…
stylobic
  • 1
  • 3
0
votes
0 answers

can't load dataset in pandas as it shows URL error with my broadband connection

i have also tried opening the same link in web browser and it shows that site can't be…
0
votes
1 answer

Saving jpeg retreived from React via API in rawFile(blob)

Is there any option to save jpeg file sent via React as rawFile? So, frontend uses React-admin, on submitting it sends JSON encoded object of a structure like this: { "id":8, "client_photo":{ "rawFile":{ "path":"DSC_2024.jpg" }, …
ArMANIAK
  • 19
  • 6
0
votes
1 answer

Load RAW image to Canvas in WPF (C#)

I'm trying to load .RAW image from file and display it into canvas background (in WPF). File only contains HEX data (without header, but resolution and color is known) - photo viewer cannot display it (because there is no info in header), however in…
0
votes
1 answer

How to call R.raw.sound Array from strings.xml?

I want to call this list of raw file from strings.xml int[] sound = { R.raw.sound1, R.raw.sound2, R.raw.sound3, R.raw.sound4, R.raw.sound5, }; How to type in a strings.xml and call from code ?
0
votes
3 answers

Reading a binary file with SSIS

We have a binary file (from a telecom system). Can SSIS read it? From what I have read about Raw File Source, it can only read files created by Raw File Destination. Is that correct?
lit
  • 14,456
  • 10
  • 65
  • 119
1
2