Top "Bidirectional" questions

"Bidirectional" refers to any process or structure that works in two directions.

How to convert RGB -> YUV -> RGB (both ways)

I want a pair of conversion algorithms, one from RGB to YUV, the other from YUV to RGB, that are …

c++ c rgb yuv bidirectional
Hibernate and H2 "Referential integrity constraint violation" for OneToMany bidirectional mapping

So I have two simple beans -- FatKid and Hamburgers. Now, for reasons unbeknownst to me I need to be …

hibernate foreign-keys one-to-many h2 bidirectional
Does Java have a HashMap with reverse lookup?

I have data that is organized in kind of a "key-key" format, rather than "key-value". It's like a HashMap, but …

java map hashmap bidirectional reverse-lookup
ValueError: Tensor must be from the same graph as Tensor with Bidirectinal RNN in Tensorflow

I'm doing text tagger using Bidirectional dynamic RNN in tensorflow. After maching input's dimension, I tried to run a Session. …

python tensorflow deep-learning recurrent-neural-network bidirectional
Automapper: bidirectional mapping with ReverseMap() and ForMember()

I have the case where I want to map an entity to a viewmodel and back. I have to specify …

.net automapper bidirectional
What's the main difference between bidirectional and directional sockets?

Bidirectional means the data incoming and outgoing data flows over the same channel (sockets), in classical socket it is the …

sockets port bidirectional
How to implement an efficient bidirectional hash table?

Python dict is a very useful data-structure: d = {'a': 1, 'b': 2} d['a'] # get 1 Sometimes you'd also like to index by …

python hashtable bidirectional
How do you use a Bidirectional BFS to find the shortest path?

How do you use a Bidirectional BFS to find the shortest path? Let's say there is a 6x6 grid. The …

algorithm path-finding shortest-path breadth-first-search bidirectional
Bidirectional bindings of different properties

I just tried to bind a Integer and a String property. After some googling this should be possible with one …

java binding properties javafx-2 bidirectional
Mapping a bidirectional list with Hibernate

I don't understand the behavior of Hibernate when mapping a bidirectional list. The SQL statements that Hibernate produces seem not …

hibernate list jpa mapping bidirectional