Mark Probst
Mark Probst
Right now that argument is a boolean, and if it's true, the kernel is normalized to 1. It should be the value to normalize the kernel to, or 0 if...
Right now convolution isn't very useful, because precise kernels are very hard to create. Figure something out.
Right now if the viewpoint is changed new nodes show up where the viewpoint was at the start, which might be a long way away from where it is now.
When adding a new node in the designer, automatically connect the currently selected node's output to the new node's input, if it has one.
That would simplify the installation and obviate the need for path-searching.
The user should be able to select a point in the image which is passed into the filter as a user value. Useful for setting center points and probably lots...
Something similar to #include, but smarter, to build filters from others. Not sure how to deal with filters that have the same names.
It should be possible to select an image for the first input image, i.e. it shouldn't be hard-wired to the image that MathMap was called on. This is necessary for...
### Source/destination types ```csharp namespace QuickType { using System; using System.Collections.Generic; using System.Globalization; using Newtonsoft.Json; using Newtonsoft.Json.Converters; public partial class TopLevel { [JsonProperty("bar", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)] public...
``` { "$schema": "http://json-schema.org/draft-07/schema#", "$ref": "#/definitions/foo", "definitions": { "foo": { "type": "object", "properties": { "bar": { "$ref": "bar.json#" }, }, "required": [ "bar" ], }, "title": "foo" } } ```...