How to remove the “jsonoutput-1-to-1.json” from Google API Vision?Remove empty elements from an array in JavascriptHow can I pretty-print JSON using node.js?How to parse JSON using Node.js?In Node.js, how do I “include” functions from my other files?Using Node.JS, how do I read a JSON file into (server) memory?How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)How to completely remove node.js from WindowsHow do I convert an existing callback API to promises?Node.js - Problem to extract text from PDF file using Google Cloud Vision API
Why do dragons like shiny stuff?
Did Captain America make out with his niece?
Could an areostationary satellite help locate asteroids?
Make a living as a math programming freelancer?
Ubuntu show wrong disk sizes, how to solve it?
Examples of hyperbolic groups
How to switch an 80286 from protected to real mode?
Can I enter a rental property without giving notice if I'm afraid a tenant may be hurt?
Is the first page of a novel really that important?
Tile the chessboard with four-colored triominoes
Does the length of a password for Wi-Fi affect speed?
Can you take actions after being healed at 0hp?
Is "safes" an acceptable alternative to "makes safe"
Does a humanoid possessed by a ghost register as undead to a paladin's Divine Sense?
Purchased new computer from DELL with pre-installed Ubuntu. Won't boot. Should assume its an error from DELL?
The meaning of "scale" in "because diversions scale so easily wealth becomes concentrated"
Where to pee in London?
Minimum effort to detect a solved Rubik's Cube
Can attackers change the public key of certificate during the SSL handshake
How can I perform a deterministic physics simulation?
What is it exactly about flying a Flyboard across the English channel that made Zapata's thighs burn?
The Game of the Century - why didn't Byrne take the rook after he forked Fischer?
Did Apollo leave poop on the moon?
Why did the US Airways Flight 1549 passengers stay on the wings?
How to remove the “jsonoutput-1-to-1.json” from Google API Vision?
Remove empty elements from an array in JavascriptHow can I pretty-print JSON using node.js?How to parse JSON using Node.js?In Node.js, how do I “include” functions from my other files?Using Node.JS, how do I read a JSON file into (server) memory?How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)How to completely remove node.js from WindowsHow do I convert an existing callback API to promises?Node.js - Problem to extract text from PDF file using Google Cloud Vision API
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am developing this system using Google Vision API and Google Cloud storage.
When I upload a PDF file to Google Cloud Storage it will then translate it to .json file.
It works, but the problem is, I cant seem to find where to remove the jsonoutput-1-to-1.
example :
filename.pdf** is translated to filename.pdf.jsonoutput-1-to-1.json
I want to remove the jsonoutput-1-to-1 and make the file become
filename.pdf.json
Here is my code.
async function detectPdfText(fileNameExtract)
const bucketName = 'testbucket';
const fileName = fileNameExtract;
const outputPrefix = 'results'
const gcsSourceUri = `gs://$bucketName/$fileName`;
const gcsDestinationUri = `gs://$bucketName/$fileName$outputPrefix`;
const inputConfig =
Supported mime_types are: 'application/pdf' and 'image/tiff'
mimeType: 'application/pdf',
gcsSource:
uri: gcsSourceUri,
,
;
const outputConfig =
gcsDestination:
uri: gcsDestinationUri,
,
;
const features = [type: 'DOCUMENT_TEXT_DETECTION'];
const request =
requests: [
inputConfig: inputConfig,
features: features,
outputConfig: outputConfig,
,
],
;
const [operation] = await client.asyncBatchAnnotateFiles(request);
const [filesResponse] = await operation.promise();
const destinationUri = filesResponse.responses[0].outputConfig.gcsDestination.uri;
async function listFiles()
const Storage = require('@google-cloud/storage');
const storage = new Storage();
const bucketName = 'testbucket';
const [files] = await storage.bucket(bucketName).getFiles();
files.forEach(file =>
console.log(`The List Of File In GBucket :` + file.name);
);
I manage to list down the file but Would like to have without jsonoutput-1-to-1
node.js reactjs
add a comment |
I am developing this system using Google Vision API and Google Cloud storage.
When I upload a PDF file to Google Cloud Storage it will then translate it to .json file.
It works, but the problem is, I cant seem to find where to remove the jsonoutput-1-to-1.
example :
filename.pdf** is translated to filename.pdf.jsonoutput-1-to-1.json
I want to remove the jsonoutput-1-to-1 and make the file become
filename.pdf.json
Here is my code.
async function detectPdfText(fileNameExtract)
const bucketName = 'testbucket';
const fileName = fileNameExtract;
const outputPrefix = 'results'
const gcsSourceUri = `gs://$bucketName/$fileName`;
const gcsDestinationUri = `gs://$bucketName/$fileName$outputPrefix`;
const inputConfig =
Supported mime_types are: 'application/pdf' and 'image/tiff'
mimeType: 'application/pdf',
gcsSource:
uri: gcsSourceUri,
,
;
const outputConfig =
gcsDestination:
uri: gcsDestinationUri,
,
;
const features = [type: 'DOCUMENT_TEXT_DETECTION'];
const request =
requests: [
inputConfig: inputConfig,
features: features,
outputConfig: outputConfig,
,
],
;
const [operation] = await client.asyncBatchAnnotateFiles(request);
const [filesResponse] = await operation.promise();
const destinationUri = filesResponse.responses[0].outputConfig.gcsDestination.uri;
async function listFiles()
const Storage = require('@google-cloud/storage');
const storage = new Storage();
const bucketName = 'testbucket';
const [files] = await storage.bucket(bucketName).getFiles();
files.forEach(file =>
console.log(`The List Of File In GBucket :` + file.name);
);
I manage to list down the file but Would like to have without jsonoutput-1-to-1
node.js reactjs
add a comment |
I am developing this system using Google Vision API and Google Cloud storage.
When I upload a PDF file to Google Cloud Storage it will then translate it to .json file.
It works, but the problem is, I cant seem to find where to remove the jsonoutput-1-to-1.
example :
filename.pdf** is translated to filename.pdf.jsonoutput-1-to-1.json
I want to remove the jsonoutput-1-to-1 and make the file become
filename.pdf.json
Here is my code.
async function detectPdfText(fileNameExtract)
const bucketName = 'testbucket';
const fileName = fileNameExtract;
const outputPrefix = 'results'
const gcsSourceUri = `gs://$bucketName/$fileName`;
const gcsDestinationUri = `gs://$bucketName/$fileName$outputPrefix`;
const inputConfig =
Supported mime_types are: 'application/pdf' and 'image/tiff'
mimeType: 'application/pdf',
gcsSource:
uri: gcsSourceUri,
,
;
const outputConfig =
gcsDestination:
uri: gcsDestinationUri,
,
;
const features = [type: 'DOCUMENT_TEXT_DETECTION'];
const request =
requests: [
inputConfig: inputConfig,
features: features,
outputConfig: outputConfig,
,
],
;
const [operation] = await client.asyncBatchAnnotateFiles(request);
const [filesResponse] = await operation.promise();
const destinationUri = filesResponse.responses[0].outputConfig.gcsDestination.uri;
async function listFiles()
const Storage = require('@google-cloud/storage');
const storage = new Storage();
const bucketName = 'testbucket';
const [files] = await storage.bucket(bucketName).getFiles();
files.forEach(file =>
console.log(`The List Of File In GBucket :` + file.name);
);
I manage to list down the file but Would like to have without jsonoutput-1-to-1
node.js reactjs
I am developing this system using Google Vision API and Google Cloud storage.
When I upload a PDF file to Google Cloud Storage it will then translate it to .json file.
It works, but the problem is, I cant seem to find where to remove the jsonoutput-1-to-1.
example :
filename.pdf** is translated to filename.pdf.jsonoutput-1-to-1.json
I want to remove the jsonoutput-1-to-1 and make the file become
filename.pdf.json
Here is my code.
async function detectPdfText(fileNameExtract)
const bucketName = 'testbucket';
const fileName = fileNameExtract;
const outputPrefix = 'results'
const gcsSourceUri = `gs://$bucketName/$fileName`;
const gcsDestinationUri = `gs://$bucketName/$fileName$outputPrefix`;
const inputConfig =
Supported mime_types are: 'application/pdf' and 'image/tiff'
mimeType: 'application/pdf',
gcsSource:
uri: gcsSourceUri,
,
;
const outputConfig =
gcsDestination:
uri: gcsDestinationUri,
,
;
const features = [type: 'DOCUMENT_TEXT_DETECTION'];
const request =
requests: [
inputConfig: inputConfig,
features: features,
outputConfig: outputConfig,
,
],
;
const [operation] = await client.asyncBatchAnnotateFiles(request);
const [filesResponse] = await operation.promise();
const destinationUri = filesResponse.responses[0].outputConfig.gcsDestination.uri;
async function listFiles()
const Storage = require('@google-cloud/storage');
const storage = new Storage();
const bucketName = 'testbucket';
const [files] = await storage.bucket(bucketName).getFiles();
files.forEach(file =>
console.log(`The List Of File In GBucket :` + file.name);
);
I manage to list down the file but Would like to have without jsonoutput-1-to-1
node.js reactjs
node.js reactjs
edited Mar 27 at 10:28
Vega
16k13 gold badges47 silver badges67 bronze badges
16k13 gold badges47 silver badges67 bronze badges
asked Mar 27 at 4:05
Haziman HamzilHaziman Hamzil
4010 bronze badges
4010 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55369637%2fhow-to-remove-the-jsonoutput-1-to-1-json-from-google-api-vision%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55369637%2fhow-to-remove-the-jsonoutput-1-to-1-json-from-google-api-vision%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown