Questions tagged [mosaic]

Mosaic is the predecessor to Netscape Navigator and Internet Explorer.

Mosaic-CK and VMS Mosaic are the remaining branches of the original browser.

113 questions
0
votes
1 answer

Would it be effective to crop image in yolo v4?

Example Image For example as Image above, area I need is just like red box, and other section doesn't have any labels for classification/object detection. What I think is "If I use cropped image to red box will occur better effect" because there's…
Taker
  • 13
  • 2
0
votes
0 answers

need help understanding css grid with variable image sizes

absolute css newbie here. all the tutorials and examples i've been finding over the past three days perfectly explain how to set up an image gallery using grid with images of a similar size, but I can't figure out how to set one up with images of…
0
votes
0 answers

Unable to install MOSAIC on windows or Mac OS

I am trying to download and run some software I need to look at for my bachelor assignment. However, the instructions on the website (https://pages.nist.gov/mosaic/html/doc/InstallWindows.html#id19) make me use my terminal. I have no experience…
0
votes
0 answers

How to plot mosaic plot in python?

I'm trying to plot a mosaic plot on below dataframe, but it keeps sending error: 'ValueError: at least one proportion should be greater than zero' here is the dataframe: import numpy as np import pandas as pd import matplotlib import…
Mahsaem
  • 21
  • 5
0
votes
1 answer

How to match features based on colour

I have a new series of images which I want to match with the old series of images taken at the same place but on different day and orientation. However I am unable to match features using most of the state of the art techniques like SIFT. I would…
0
votes
1 answer

Can Hybris Impexes allow for components migration and transformation into responsive components?

Is it necessary to redo configurations entirely only to transform a given components which setup is stored into Hybris (such as checkout or signup) in order to make it responsive? (the target site being a mosaic theme adaptation)
scaap
  • 25
  • 4
0
votes
1 answer

Is there a way to combine mosaic plots using different data sets so that they are outputted next to each other?

I am trying to combine 20 mosaic plots onto one output. par(mfrow=...) is not working. I would like the rows to have 3 plots in each row. Here is code for just 4 of the plots that I am using: library(vcd) library(vcdExtra) library(MASS) All <-…
Sam Cole
  • 57
  • 6
0
votes
1 answer

Constraining coef output using fit model or nls function

I have data on the photosynthetic activity of microalgae under increasing light. PAR: is the different light exposures, (x, independent variable) ETR: is the photosynthetic activity (y, dependent variable). PAR ETR 1 0.409090909 46 …
0
votes
0 answers

Add sound to the GStreamer mosaic

This is the mosaic code GStreamer 2x2 gst-launch-1.0 -e \ videomixer name=mix \ sink_0::xpos=0 sink_0::ypos=0 sink_0::alpha=0\ sink_1::xpos=0 sink_1::ypos=0 \ sink_2::xpos=200 sink_2::ypos=0 \ …
0
votes
0 answers

Mosaic Plot does not fit

The labels for the mosaic plot don't fit the screen ( they're partially cut) so id like to move/shift the plot to the right so that the labels fully fit -- tried using ''par'' function but to no avail -- any ideas? structure(list(Road_Type =…
Tyler
  • 543
  • 4
  • 13
0
votes
2 answers

I am trying to run mosaic for two multi-band images.Output saved as Single band

This is final output I got, I'm supposed to get the final output as a single file with two bands: Following is the code which I am using: A11 <-brick("E:/Official/PROJECTS/R_Progrm/1.tif") // to read multiband…
Raj Arya
  • 3
  • 1
0
votes
2 answers

Terrains union in a mosaic canvas 2d game

I have a mosaic map made of hexagons in HTML 5 Canvas. What I would like to be able to do is that when two different terrains come together, they mix with each other. I would like to move on from image 1 to image 2 Image 1 Image 2
0
votes
0 answers

Creating a mosaic with montage wrapper

I'm having trouble using montage wrapper to create a mosaic in Python. I am trying to create a 3 x 3 mosaic of M33 and have all 59 photos in a folder 'M33' as shown in my code. There are about 4 photos for each tile and also darks and lights in the…
Bobby Stiller
  • 137
  • 1
  • 1
  • 9
0
votes
1 answer

Mosaic plot with variation by color and size in R

Here is my dataset library(dplyr) df <- data.frame(var_1 = sample(c('A', 'B', 'C'), 1000, replace =TRUE), var_2 = sample(c(0,1), 1000, replace = TRUE)) df <- df %>% group_by(var_1) %>% summarize(count = n(), …
user1700890
  • 7,144
  • 18
  • 87
  • 183
0
votes
1 answer

Mosaicking rasters from the same date in a list of rasters

I am working with R Studio 0.99.902. I have got a list of rasters (time series of S2 band 5 of a specific tile). The acquisitions of some dates are split into two files which I need to mosaic (they are two different areas of the same tile). This…