Unproject Batch #libgdx

Im trying to unproject from the batch… How can i do it?

 
...
batch.setProjectionMatrix(orthoCamera.combined);

        batch.begin();
        player.render(batch);
        batch.flush();
        batch.end();

        //orthoCamera.projection.inv();
        //orthoCamera.view.inv();
        //orthoCamera.update(true);
       
        stage.getBatch().setProjectionMatrix(orthoCamera.combined);
        stage.draw();
...

camera.unproject(...);

But i want to unproject it from the batch.

Should i unproject the camera from itself? and then stage.setProjectionMatrix(camera.combined)

?