Questions tagged [raw]
204 questions
0
votes
1 answer
Is it possible to access DJI Mavic's camera video and process it realtime on the external device?
I want to realtime process video that captures DJI Mavic using onboard NVidia Jetson module. Is it possible to use video data in external device? How to access it?

Robotex
- 1,064
- 6
- 17
- 41
0
votes
0 answers
Azure functions, ImageMagick and nef (raw) file conversion
I have tried to create an azure function (hosted in an azure function app) that create lower resolution .jpg files when a .nef (Nikon raw file) is uploaded to a blob container, and put them in separate containers. However, the resulting output is of…

BlackZoda
- 1
- 1
0
votes
0 answers
Matching the two columns and enter missing row according to the missing value in columns
In figure 1 we can see that in the column named "No1" is not matching with column named "No" in terms of Number of Rows in both columns. In the column named "No1" there is one number missing which is "3". I want to write a code in which python code…

Aqib
- 3
- 3
0
votes
1 answer
How to share a video from stored in raw folder of my app - Android studio
I want to share a video that is stored inside the raw folder of my Android app. I saved this video file while developing my app. Now I want to share this by clicking a button on WhatsApp. How can I do this? Till now I can share video files by…

Bhaskar Jyoti Dutta
- 1,740
- 2
- 15
- 30
0
votes
0 answers
Cannot open direct import of RAW from camera with crtw2fits
I open a BULB image with gphoto2 but I cannot find the way to separate the bands of the RAW image. The code crtwo2fits could convert the images into FITS format but cr2.py flags the file as closed:
from crtwo2fits import cr2 camera_file =…

Sacripante
- 1
- 1
0
votes
1 answer
How can we use count function with joins in php laravel?
We are working on php laravel project where we find relational data using joins which we get correctly but we also want to find out count of this dafa which we get from joins but when we apply count function with joins then it gives same count value…
0
votes
0 answers
DWH Ingest ALL to one table or Split out to smaller tables for Transformation (ETL prep)
Another DWH Best Practice question
our DBs in MongoDB follow a structure as so:
*company (DB name)
-- collectionId
-- collectionId_metrics
-- collectionId_dashboards
*activity_log (DB name)
--collectionId
-- collectionId_actions
--…

MC7836
- 84
- 8
0
votes
0 answers
How to write a regular expression with a list of quotes, using raw string literal?
The main idea of raw string literal, as they wrote here, is to avoid the excessive number of backslases.
The main idea of regular expressions is to make a search for substring clear.
This is why I use regular expressions and raw string…

Alexander
- 51
- 5
0
votes
1 answer
SAS only read the first information of the following space delimited dataset
I am trying to read the following txt dataset in SAS but unfortunely, I only get half of the dataset information in my final table.
The file is
Kreil Professional M 823421 Natan Expert M 234 Silvio Beginner M 2342 Steven Unexperienced M 2343
Anton…

Prototype51
- 25
- 4
0
votes
1 answer
Get the "raw" filter when parsing twig template
Hi I try to parse a twig file template in PHP. I loop on twig node object excpecting find the raw filter of my template but does'nt appear inside the object. I can see other filter like escape or lower if I try on the same line.
My code to parse…

Thomas Musa
- 181
- 1
- 1
- 8
0
votes
2 answers
Raw keyboard input
What I would like to do is to have e.g. a spare raspberry pi with four USB keyboards attached (or four mice).
What I want is to know, not just if a key is pressed, but which keyboard it was pressed on, so that different keyboard's buttons can do…

John Allsup
- 1,072
- 8
- 9
0
votes
0 answers
The cause of the PHP error in the role section
I have a dynamic page
The so-called MVC page written in raw PHP
I set it to display a certain header when the user logs in
And when not, a special header
with code:
html code
But it gives this error…

seyed ata
- 1
- 3
0
votes
1 answer
How to replace the name of several files in a folder by names on a text list
I have to change the name of several files in a folder such as:
CO201_LF.ab1
CO202_LF.ab1
CO034_LF.ab1
CO9871_LF.ab1
CO9576_LF.ab1
And replace those names with the names that I have in a list in a txt file.
How I can do that?
For the moment I have…

shawn_smith_kaviedes
- 35
- 1
- 6
0
votes
1 answer
JWS sign in java and typescript not producing the same result
I am trying to raw deflate the JSON string in Java using Deflater.class. But there is some difference between the deflated results generated by java and typescript.
let bodyString = JSON.stringify(idTokenPayload);
const fields = deflate ? { zip:…

user1700138
- 35
- 2
- 7
0
votes
1 answer
Use parameter with DB::raw in Laravel 9
I have this SQL query which returns all employees based on selected date :
SELECT employees.id as employee_id ,employees_salaries.*,CONCAT(first_name,' ',second_name,' ',third_name) as fullname FROM employees
JOIN employees_salaries
ON employees.id…

Yu_Jain
- 111
- 2
- 16