Questions tagged [superimpose]

11 questions
2
votes
1 answer

Superimposing 2D heat map on 3D Image with transparency

I have a 3D python Image and its 2D feature vector . I displayed each with imshow() as shown in the code down here and I can see it clearly. What I wanted now is to overlay the 2D feature vector as a heat map on top of its 3D image. I tried adding…
Hatfim
  • 35
  • 1
  • 8
1
vote
0 answers

C# Nwaves "DiscreteSignal1 + DiscreteSignal2" superimposing operation results a giant peak from 0 Hz up to 17k+ Hz in the middle

I have two signals (out of wav files), both are mono wav files of 37500 Hz sample rate. File 1 is output.wav: File 2 is saved_mono.wav: I apply superimposing ("+") operation for the two Discrete signals: // shiftedSignal is output.wav //…
Ivan G
  • 21
  • 4
1
vote
1 answer

How to center a super imposed bitmap properly?

I generate a QR code from code, then superimpose it over another image. Thie issue is that it doesn't line up as I expected. /// /// Draw one bitmap over another. /// /// ///
CorrieJanse
  • 2,374
  • 1
  • 6
  • 23
0
votes
0 answers

How to superimpose and calculate the RMSD for a large number of mmCIF(or PDB) files containing DIFFERENT proteins

I would like to ask you all a question about superimposing and calculating the RMSD of multiple mmCIF files at once. I am creating a code that downloads a entire homologous superfamily, which then need to be trimmed down based on a specific RMSD…
y.a
  • 21
  • 1
0
votes
0 answers

Superimpose, edit and remove text ontop of screen in python

I want to to add text ontop of other windows (even fullscreen ones) which can be changed in a while loop. For example the script is While True, and it reads numbers on the screen and the superimposed text is always showing the sum of the numbers…
0
votes
3 answers

Superimpose 2 DIV

I want realise this page this is my work the probleme is i can't superimpose the div who contain the text "LUCETTE" under the div who contain the picture my code html: * { font-size: 16px; font-family: 'playfair_displayblack'; } .container…
pat66
  • 1
  • 1
0
votes
0 answers

How to superimpose a barchart on a multiplot in Python

I have a code that plots two charts side by side. I want to additionally plot a bar chart on one of the two plots, with another quantity. My code indicates the hashed lines which would additionally plot a bar chart. But I want to plot this bar chart…
0
votes
0 answers

Superimpose canvas and img in a bootstrap grid

The following code concerns the second row of the screenshot. I want to superimpose the canvas (black square) to the stimuli (the square with the figure). Thanks
nasant
  • 1
  • 1
0
votes
1 answer

WordPress - Overlay a white block containing text, on the left of a photo

For the needs of an internship project in WordPress, I decided to slightly superimpose a white block containing text, on the left of a photo. These two elements are in a container. This is my-figma-example. I already tried to play with the z-index…
Erwanb35
  • 1
  • 2
0
votes
1 answer

Shiny R: bad display of plots in plotly

I have some problems displaying plots. They are added dynamically: the more variables selected the more plots are plotted. The problem is there are no space respect. This is the code: dades <- iris binary_variable <- factor(sample(x = c(0, 1), size…
Miquel
  • 442
  • 3
  • 14
-1
votes
1 answer

How to plot combine two heatmaps on top of each other in python

I have two heatmaps I've made in python. I use seaborn for both of them, but I'm not wedded to it. Both these heatmaps are on the same 20x20 grid. One of the heatmaps is a background, dividing the 20x20 grid into 3 large regions. The other heatmap…